1.全局组件
Vue.component(‘com’,{
template:<div>121212</div>
})
2.局部组件
var vm=new Vue({
el:’#app’,
components:{
‘bb’:’#text’
}
})
页面中:
1.全局组件
Vue.component(‘com’,{
template:<div>121212</div>
})
2.局部组件
var vm=new Vue({
el:’#app’,
components:{
‘bb’:’#text’
}
})
页面中: