feat: expose all scoped slots on this.$slots

close #9421
This commit is contained in:
Evan You 2019-02-04 22:25:19 -05:00
parent b034abf48e
commit 0129b0eb12
2 changed files with 30 additions and 4 deletions

View File

@ -1,5 +1,6 @@
/* @flow */
import { hasOwn } from 'shared/util'
import { normalizeChildren } from 'core/vdom/helpers/normalize-children'
export function normalizeScopedSlots (
@ -15,7 +16,7 @@ export function normalizeScopedSlots (
res = {}
for (const key in slots) {
if (slots[key] && key[0] !== '$') {
res[key] = normalizeScopedSlot(slots[key])
res[key] = normalizeScopedSlot(normalSlots, key, slots[key])
}
}
}
@ -30,13 +31,20 @@ export function normalizeScopedSlots (
return res
}
function normalizeScopedSlot(fn: Function): Function {
return scope => {
function normalizeScopedSlot(normalSlots, key, fn) {
const normalized = (scope = {}) => {
const res = fn(scope)
return res && typeof res === 'object' && !Array.isArray(res)
? [res] // single vnode
: normalizeChildren(res)
}
// proxy scoped slots on normal $slots
if (!hasOwn(normalSlots, key)) {
Object.defineProperty(normalSlots, key, {
get: normalized
})
}
return normalized
}
function proxyNormalSlot(slots, key) {

View File

@ -456,7 +456,7 @@ describe('Component scoped slot', () => {
})
// new in 2.6, unifying all slots as functions
it('non-scoped slots should also be available on $scopedSlots', () => {
it('non-scoped slots should also be available on this.$scopedSlots', () => {
const vm = new Vue({
template: `<foo>before <div slot="bar" slot-scope="scope">{{ scope.msg }}</div> after</foo>`,
components: {
@ -473,6 +473,24 @@ describe('Component scoped slot', () => {
expect(vm.$el.innerHTML).toBe(`before after<div>hi</div>`)
})
// #9421 the other side of unification is also needed
// for library authors
it('scoped slots should also be available on this.$slots', () => {
const Child = {
render: function (h) {
return h(
'div',
this.$slots.content
)
}
}
const vm = new Vue({
template: `<child><template #content>foo</template></child>`,
components: { Child }
}).$mount()
expect(vm.$el.innerHTML).toBe(`foo`)
})
// #4779
it('should support dynamic slot target', done => {
const Child = {