Vue.component('Father',{template:'<h3> father <Son></Son> </h3>'//这里要把子组件加进来})
Vue.component('Son',{template:'<h3> son </h3>'})newVue({el:'#app',})
局部组件嵌套
newVue({el:'#app',components:{'Father':{template:'<div> father <Son/> </div>',//这里也要把子组件加进来,组件可以使用单标签components:{'Son':{//子组件必须在父组件内创建才行template:'<h3> Son </h3>'}}}}})