VUE注册全局组件和局部组件过程解析
这篇文章主要介绍了VUE注册全局组件和局部组件过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
全局组件
第一步:在components文件夹下建立一个子文件Users.vue
{{msg}}
第二步:在main.js中进行全局注册
//TheVuebuildversiontoloadwiththe`import`command //(runtime-onlyorstandalone)hasbeensetinwebpack.base.confwithanalias. importVuefrom'vue' importAppfrom'./App' importrouterfrom'./router' //全局配置组件第一步Users是文件夹的名字 importUsersfrom'./components/Users' Vue.config.productionTip=false //全局注册组件第二部users是 Vue.component('users',Users) /*eslint-disableno-new*/ newVue({ el:'#app', router, components:{App}, template:'' })
第三步:在对应的文件中引用
{{title}}
局部组件
在components文件夹下新建一个子组件Users.vue文件,然后在对应的文件中引用
{{title}}