一、什么是slot
在使用组件时,我们常常要像这样组合它们:
当需要让组件组合使用,混合父组件的内容与子组件的模板时,就会用到slot , 这个过程叫作内容分发( transclusion )。
1.< app>组件不知道它的挂载点会有什么内容。挂载点的内容是由<app >的父组件决定的。
2. 组件很可能有它自己的模板。
props 传递数据、events 触发事件和slot 内容分发就构成了Vue 组件的3 个API 来源,再复杂的组件也是由这3 部分构成的。
二、作用域
{{ message }}
@H_502_13@
这里的message 就是一个slot ,但是它绑定的是父组件的数据,而不是组件<child-component>的数据。
父组件模板的内容是在父组件作用域内编译,子组件模板的内容是在子组件作用域内编译。如:
@H_502_13@
Vue.component('child-component',{
template: '子组件@H_502_13@'
});
var app15 = new Vue({
el: '#app15',data: {
showChild: true
}
});
@H_502_13@
这里的状态showChild 绑定的是父组件的数据,如果想在子组件上绑定,那应该是:
@H_502_13@
Vue.component('child-component',{
template: '502_13@',data: function(){
return {
showChild: true
}
}
});
@H_502_13@
因此, slot 分发的内容,作用域是在父组件上的。
三、slot用法
3.1 单个slot
在子组件内使用特殊的<slot>元素就可以为这个子组件开启一个slot(插槽),在父组件模板里,插入在子组件标签内的所有内容将替代子组件的 标签及它的内容。
分发的内容
更多分发的内容
@H_502_13@
Vue.component('my-component16',{
template: '' +
'如果父组件没有插入内容,我将作为默认出现<
' + //预留的slot插槽
'@H_502_13@'
});
var app16 = new Vue({
el: '#app16'
});
@H_502_13@
渲染结果为:
这里的message 就是一个slot ,但是它绑定的是父组件的数据,而不是组件<child-component>的数据。
父组件模板的内容是在父组件作用域内编译,子组件模板的内容是在子组件作用域内编译。如:
@H_502_13@
Vue.component('child-component',{
template: '
子组件@H_502_13@'
});
var app15 = new Vue({
el: '#app15',data: {
showChild: true
}
});
@H_502_13@
这里的状态showChild 绑定的是父组件的数据,如果想在子组件上绑定,那应该是:
@H_502_13@
Vue.component('child-component',{
template: '
502_13@',data: function(){
return {
showChild: true
}
}
});
@H_502_13@
因此, slot 分发的内容,作用域是在父组件上的。
三、slot用法
3.1 单个slot
在子组件内使用特殊的<slot>元素就可以为这个子组件开启一个slot(插槽),在父组件模板里,插入在子组件标签内的所有内容将替代子组件的
分发的内容
更多分发的内容
@H_502_13@ Vue.component('my-component16',{ template: '' +
' ' + //预留的slot插槽
'@H_502_13@'
});
var app16 = new Vue({
el: '#app16'
});
@H_502_13@
如果父组件没有插入内容,我将作为默认出现<
渲染结果为: