Pattern: Inconsisten custom event name casing
Issue: -
This rule enforces using kebab-case custom event names.
Event names will never be used as variable or property names in JavaScript, so there’s no reason to use camelCase or PascalCase. Additionally,
v-on
event listeners inside DOM templates will be automatically transformed to lowercase (due to HTML’s case-insensitivity), sov-on:myEvent
would becomev-on:myevent
– makingmyEvent
impossible to listen to.For these reasons, we recommend you always use kebab-case for event names.
<template>
<!-- ✓ GOOD -->
<button @click="$emit('my-event')" />
<!-- ✗ BAD -->
<button @click="$emit('myEvent')" />
</template>
<script>
export default {
methods: {
onClick () {
/* ✓ GOOD */
this.$emit('my-event')
this.$emit('update:myProp', myProp)
/* ✗ BAD */
this.$emit('myEvent')
}
}
}
</script>
{
"vue/custom-event-name-casing": ["error", {
"ignores": []
}]
}
ignores
(string[]
) ... The event names to ignore. Sets the event name to allow. For example, custom event names, Vue components event with special name, or Vue library component event name. You can set the regexp by writing it like"/^name/"
orclick:row
orfooBar
.
<template>
<!-- ✓ GOOD -->
<button @click="$emit('click:row')" />
<button @click="$emit('fooBar')" />
<!-- ✗ BAD -->
<button @click="$emit('myEvent')" />
</template>
<script>
export default {
methods: {
onClick () {
/* ✓ GOOD */
this.$emit('click:row')
this.$emit('fooBar')
/* ✗ BAD */
this.$emit('myEvent')
}
}
}
</script>