Vue2的slot
有具名插槽内容就不会显示匿名插槽的内容了。 template 相当于包过内容的块。 效果 目录结构 app.vue文件引入 代码 <!-- index.vue --> <template> <div class="slotswomo"> <layout> <!-- 具名插槽 --> <template slot="header">我是header</template> <!-- 匿名插槽 --> <template>我是匿名插...
Mar 15, 20231 min read10