You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I checked to make sure that this issue has not already been filed
💥 Demo Page
Does not apply. Error in NPM package using Vite packager
Explanation
What is the expected behavior?
Run compilation of any Vue 3 application without compilation error on latest version of NodeJS/NPM and Vite
What is happening instead?
Compilation error occurs on line 2 of the dist/tagify.vue file due to the use of v-model="value". Replacing with v-bind="value" fixes the error, however, a second error happens on line 7 because tagify.min.js does not exist in the folder. Replacing with import Tagify from "./tagify.esm.js" fixes the error.
What error message are you getting?
[vite:vue] [plugin vite:vue] node_modules/@yaireo/tagify/dist/tagify.vue (2:49): v-model cannot be used on a prop, because local prop bindings are not writable.
Use a v-bind binding combined with a v-on listener that emits update:x event instead.
error during build:
Could not resolve "./tagify.min.js" from "node_modules/@yaireo/tagify/dist/tagify.vue"
file: C:/projectpath/node_modules/@yaireo/tagify/dist/tagify.vue
Prerequisites
💥 Demo Page
Does not apply. Error in NPM package using Vite packager
Explanation
What is the expected behavior?
Run compilation of any Vue 3 application without compilation error on latest version of NodeJS/NPM and Vite
What is happening instead?
Compilation error occurs on line 2 of the dist/tagify.vue file due to the use of v-model="value". Replacing with v-bind="value" fixes the error, however, a second error happens on line 7 because tagify.min.js does not exist in the folder. Replacing with import Tagify from "./tagify.esm.js" fixes the error.
What error message are you getting?
Use a v-bind binding combined with a v-on listener that emits update:x event instead.
Could not resolve "./tagify.min.js" from "node_modules/@yaireo/tagify/dist/tagify.vue"
file: C:/projectpath/node_modules/@yaireo/tagify/dist/tagify.vue
Functional file
The text was updated successfully, but these errors were encountered: