[Vuejs]-How to integrate vuei18n in vuetify?

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)
}

vuetify/src/index.ts#L19

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

Leave a comment