0👍
I haven’t tested it yet but:
I’m pretty sure that in case of a simple browser js include (i.e. codepen) the following happens:
if (typeof window !== 'undefined' && window.Vue) {
window.Vue.use(Vuetify)
}
So at the time where you try to provide options, Vuetify is already installed with default-opts. And sucessive uses if Vue.use
will not re-install the plugin.
EDIT: which I would consider a bug/issue in Vuetify
- [Vuejs]-Social authentication for Google failing with Vue.js and django-rest-auth
- [Vuejs]-Vue.js Should you emit data from popup back to the main window?
Source:stackexchange.com