常用于组件调用中
(1)在components文件中创建slot.vue组件
(2)在demo中调用组件
slot插槽
----------------------------
123
456
789
//slot比较特殊,所以导入的时候不能直接写slot
import slots from "@/components/slot"
export default{
data(){
return{
}
},
components:{
slots
}
}
运行结果:
作者:百香果果@
VUE
slot