(property) derailShow: any [vue/no-v-model-argument] 'v-model' directives require no argument.eslint-plugin-vue
时间: 2023-08-30 15:10:31 浏览: 250
这是一个 ESLint 错误,它指出在 Vue 组件中使用了带有参数的 `v-model` 指令。正确的使用方式是将 `v-model` 与一个 data 属性绑定,例如:
```html
<template>
<input v-model="inputValue" />
</template>
<script>
export default {
data() {
return {
inputValue: '',
};
},
};
</script>
```
如果您需要使用带参数的 `v-model`,请考虑使用自定义指令或 prop 传递数据。
阅读全文