const bb={
template:`<h2>子组件模板</h2>`
}
const aa={
template:`<div><h1>父组件</h1><bb></bb></div>`,
components:{
'bb':bb //父组件声明子组件
}
}
var app=new Vue({
components:{
'aa':aa
}
})
const bb={
template:`<h2>子组件模板</h2>`
}
const aa={
template:`<div><h1>父组件</h1><bb></bb></div>`,
components:{
'bb':bb //父组件声明子组件
}
}
var app=new Vue({
components:{
'aa':aa
}
})