背景:代码提交到暂存区时,触发eslint插件vue/v-on-event-hyphenation规则。
在Vue中,事件监听器通过v-on指令绑定,事件名称通常使用短横线命名(kebab-case)。
console错误提示如下:
错误代码写法:
<MyComponent @getData="getList"></MyComponent>
正确的写法:
<MyComponent @get-data="getList"></MyComponent>
背景:代码提交到暂存区时,触发eslint插件vue/v-on-event-hyphenation规则。
在Vue中,事件监听器通过v-on指令绑定,事件名称通常使用短横线命名(kebab-case)。
console错误提示如下:
错误代码写法:
<MyComponent @getData="getList"></MyComponent>
正确的写法:
<MyComponent @get-data="getList"></MyComponent>