Open mtomcanyi opened 3 years ago
If you are just using the script on one component/page, why the hassle with the plugin method? Just import the script in the page. Is there a reason for the global plugin?
Does anyone know if this works now with Nuxt3?
The Nuxt usage instructions are outdated and cause errors and warning. This has been tested with
Nuxt 2.15.8
andVue 2.6.14
yarn add @johmun/vue-tags-input
Vue.use(VueTagsInput);
The
build.vendor
entry suggested in original instructions is not needed. It now now causes build warningWARN: vendor has been deprecated due to webpack4 optimization.
See nuxt/nuxt.js#5544.<client-only>
. Failing to do that causesUncaught ReferenceError: window is not defined
. Make sure your<script>
does not import the component or you get the same error.