Skip to content

Commit 24b4640

Browse files
committed
fix: avoid exposing internal flags on $scopedSlots
ref #9443
1 parent 54e6a12 commit 24b4640

File tree

4 files changed

+27
-25
lines changed

4 files changed

+27
-25
lines changed

src/core/instance/lifecycle.js

+1
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ export function updateChildComponent (
233233
(parentVnode.data.scopedSlots && !parentVnode.data.scopedSlots.$stable) ||
234234
(vm.$scopedSlots !== emptyObject && !vm.$scopedSlots.$stable)
235235
)
236+
236237
// Any static slot children from the parent may have changed during parent's
237238
// update. Dynamic scoped slots may also have changed. In such cases, a forced
238239
// update is necessary to ensure correctness.

src/core/vdom/helpers/normalize-scoped-slots.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* @flow */
22

33
import { hasOwn } from 'shared/util'
4+
import { def } from 'core/util/lang'
45
import { normalizeChildren } from 'core/vdom/helpers/normalize-children'
56

67
export function normalizeScopedSlots (
@@ -26,8 +27,8 @@ export function normalizeScopedSlots (
2627
res[key] = proxyNormalSlot(normalSlots, key)
2728
}
2829
}
29-
res._normalized = true
30-
res.$stable = slots ? slots.$stable : true
30+
def(res, '_normalized', true)
31+
def(res, '$stable', slots ? !!slots.$stable : true)
3132
return res
3233
}
3334

test/unit/features/component/component-scoped-slot.spec.js

+23
Original file line numberDiff line numberDiff line change
@@ -969,4 +969,27 @@ describe('Component scoped slot', () => {
969969
}).then(done)
970970
}
971971
})
972+
973+
// regression #9396
974+
it('should not force update child with no slot content', done => {
975+
const Child = {
976+
updated: jasmine.createSpy(),
977+
template: `<div></div>`
978+
}
979+
980+
const parent = new Vue({
981+
template: `<div>{{ count }}<child/></div>`,
982+
data: {
983+
count: 0
984+
},
985+
components: { Child }
986+
}).$mount()
987+
988+
expect(parent.$el.textContent).toBe(`0`)
989+
parent.count++
990+
waitForUpdate(() => {
991+
expect(parent.$el.textContent).toBe(`1`)
992+
expect(Child.updated).not.toHaveBeenCalled()
993+
}).then(done)
994+
})
972995
})

test/unit/modules/vdom/patch/edge-cases.spec.js

-23
Original file line numberDiff line numberDiff line change
@@ -410,27 +410,4 @@ describe('vdom patch: edge cases', () => {
410410
expect(vm.$el.textContent).toBe('FooBar')
411411
expect(inlineHookSpy.calls.count()).toBe(2)
412412
})
413-
414-
// regression #9396
415-
it('should not force update child with no slot content', done => {
416-
const Child = {
417-
updated: jasmine.createSpy(),
418-
template: `<div></div>`
419-
}
420-
421-
const parent = new Vue({
422-
template: `<div>{{ count }}<child/></div>`,
423-
data: {
424-
count: 0
425-
},
426-
components: { Child }
427-
}).$mount()
428-
429-
expect(parent.$el.textContent).toBe(`0`)
430-
parent.count++
431-
waitForUpdate(() => {
432-
expect(parent.$el.textContent).toBe(`1`)
433-
expect(Child.updated).not.toHaveBeenCalled()
434-
}).then(done)
435-
})
436413
})

0 commit comments

Comments
 (0)