1234
a. 单个slot b. 具名slot *混合父组件的内容与子组件自己的模板-->内容分发 *父组件模板的内容在父组件作用域内编译;子组件模板的内容在子组件作用域内编译。
html><html lang="en"><head> <meta charset="UTF-8"> <title>Titletitle> <script src="js/vue.js">script>head><body><div id="box"> <child1>aaachild1>div>body><script> var bus = new Vue() //new一个vue的实例,就是中央事件总线 Vue.component('child1', { template: `<div> 首页 <slot>slot> div>`, }) var vm = new Vue({ el: '#box', })script>