0π
β
in app.js registered 2 components:
- Time β registered localy
- vue-time β registered global
if you want register Time global add in app.js this:
*do not use name Time
https://developer.mozilla.org/uk/docs/Web/HTML/Element/time
Vue.component(`Time`, Time)
in app.js delete this:
components: { Time }
then use tag <time></time>
anywhere in your application
Source:stackexchange.com