For some legacy reason I didn't use webpack in my project, so I used your i18n using script tag, the question is how can I use your cause I can't use Vue.use(i18n, {...}) cause i18n is load from script tag which can't assign to a local variable.
Another question is when I used this message in plain html tag, it works(second box), when I used it in another component, it doesn't works(first box).
Hi,
For some legacy reason I didn't use webpack in my project, so I used your i18n using script tag, the question is how can I use your cause I can't use
Vue.use(i18n, {...})
cause i18n is load from script tag which can't assign to a local variable.