所以我用模板创建了一个简单的包装组件,例如:
<wrapper>
<b-table v-bind="$attrs" v-on="$listeners"></b-table>
</wrapper>
使用$attrs
and$listeners
传递道具和事件。
工作正常,但是包装器如何将<b-table>
命名的插槽代理给孩子?
所以我用模板创建了一个简单的包装组件,例如:
<wrapper>
<b-table v-bind="$attrs" v-on="$listeners"></b-table>
</wrapper>
使用$attrs
and$listeners
传递道具和事件。
工作正常,但是包装器如何将<b-table>
命名的插槽代理给孩子?
视图 3
与下面的 Vue 2.6 示例相同,除了:
Vue 2.6(v-slot 语法)
所有普通的槽都会被添加到作用域槽中,所以你只需要这样做:
<wrapper>
<b-table v-bind="$attrs" v-on="$listeners">
<template v-for="(_, slot) of $scopedSlots" v-slot:[slot]="scope"><slot :name="slot" v-bind="scope"/></template>
</b-table>
</wrapper>
Vue 2.5
见保罗的回答。
原始答案
您需要像这样指定插槽:
<wrapper>
<b-table v-bind="$attrs" v-on="$listeners">
<!-- Pass on the default slot -->
<slot/>
<!-- Pass on any named slots -->
<slot name="foo" slot="foo"/>
<slot name="bar" slot="bar"/>
<!-- Pass on any scoped slots -->
<template slot="baz" slot-scope="scope"><slot name="baz" v-bind="scope"/></template>
</b-table>
</wrapper>
渲染功能
render(h) {
const children = Object.keys(this.$slots).map(slot => h('template', { slot }, this.$slots[slot]))
return h('wrapper', [
h('b-table', {
attrs: this.$attrs,
on: this.$listeners,
scopedSlots: this.$scopedSlots,
}, children)
])
}
您可能还想inheritAttrs
在组件上设置为 false。
我一直在使用 自动传递任何(和所有)插槽v-for
,如下所示。这种方法的好处是您不需要知道必须传递哪些插槽,包括默认插槽。传递给包装器的任何插槽都将被传递。
<wrapper>
<b-table v-bind="$attrs" v-on="$listeners">
<!-- Pass on all named slots -->
<slot v-for="slot in Object.keys($slots)" :name="slot" :slot="slot"/>
<!-- Pass on all scoped slots -->
<template v-for="slot in Object.keys($scopedSlots)" :slot="slot" slot-scope="scope"><slot :name="slot" v-bind="scope"/></template>
</b-table>
</wrapper>
这是 vue >2.6的更新语法,带有范围插槽和常规插槽,感谢 Nikita-Polyakov,链接到讨论
<!-- pass through scoped slots -->
<template v-for="(_, scopedSlotName) in $scopedSlots" v-slot:[scopedSlotName]="slotData">
<slot :name="scopedSlotName" v-bind="slotData" />
</template>
<!-- pass through normal slots -->
<template v-for="(_, slotName) in $slots" v-slot:[slotName]>
<slot :name="slotName" />
</template>
<!-- after iterating over slots and scopedSlots, you can customize them like this -->
<template v-slot:overrideExample>
<slot name="overrideExample" />
<span>This text content goes to overrideExample slot</span>
</template>