Skip to content

Latest commit

 

History

History
57 lines (39 loc) · 1.48 KB

use-v-on-exact.md

File metadata and controls

57 lines (39 loc) · 1.48 KB
pageClass sidebarDepth title description since
rule-details
0
vue/use-v-on-exact
enforce usage of `exact` modifier on `v-on`
v5.0.0

vue/use-v-on-exact

enforce usage of exact modifier on v-on

  • ⚙️ This rule is included in all of "plugin:vue/vue3-essential", "plugin:vue/essential", "plugin:vue/vue3-strongly-recommended", "plugin:vue/strongly-recommended", "plugin:vue/vue3-recommended" and "plugin:vue/recommended".

📖 Rule Details

This rule enforce usage of exact modifier on v-on when there is another v-on with modifier.

<template>
  <!-- ✓ GOOD -->
  <button @click="foo" :click="foo"></button>
  <button v-on:click.exact="foo" v-on:click.ctrl="foo"></button>

  <!-- ✗ BAD -->
  <button v-on:click="foo" v-on:click.ctrl="foo"></button>
</template>

🔧 Options

{
  "vue/use-v-on-exact": ["error"]
}

👫 Related Rules

📚 Further Reading

🚀 Version

This rule was introduced in eslint-plugin-vue v5.0.0

🔍 Implementation