v-model:selected="selected" error #14876
-
|
I'm trying to create a table with multiple selections. I'm following the steps based on this. And the setup function looks like this: Somehow the ESLint throws an error: How can I solve this? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
You could add another rule into your |
Beta Was this translation helpful? Give feedback.
-
|
Your ESLint setup is outdated, probably still for Vue 2. Create a new project using If your project is a Vue 2 project(Quasar v1), then you should follow https://v1.quasar.dev instead. |
Beta Was this translation helpful? Give feedback.
Your ESLint setup is outdated, probably still for Vue 2. Create a new project using
yarn create quasar/npm init quasar/etc. then mimic the setup by matching the ESLint-related package names, versions, etc., and the.eslintrc.jsfile.If your project is a Vue 2 project(Quasar v1), then you should follow https://v1.quasar.dev instead.
v-model:selectedfor Vue 3 is:selected.syncfor Vue 2.