<div id="app"> <child-component> <template slot="girl"> 漂亮、美麗、購物、逛街 </template> <template slot="boy"> 帥氣、才實 </template> <div> 我是一類人, 我是默認的插槽 </div> </child-component> </div> <script> Vue.component('child-component',{ template:` <div> <h4>這個世界不只有男人和女人</h4> <slot name="girl"></slot> <div style="height:1px;background-color:red;"></div> <slot name="boy"></slot> <div style="height:1px;background-color:red;"></div> <slot></slot> </div> ` }) let vm = new Vue({ el:'#app', data:{ } }) </script>