Skip to content

Commit 52cf912

Browse files
committed
fix(setup): setup props should pass isReactive check
close #12561
1 parent 2533a36 commit 52cf912

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

src/core/instance/state.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import {
3030
isFunction
3131
} from '../util/index'
3232
import type { Component } from 'types/component'
33-
import { TrackOpTypes } from '../../v3'
33+
import { shallowReactive, TrackOpTypes } from 'v3'
3434

3535
const sharedPropertyDefinition = {
3636
enumerable: true,
@@ -71,7 +71,7 @@ export function initState(vm: Component) {
7171

7272
function initProps(vm: Component, propsOptions: Object) {
7373
const propsData = vm.$options.propsData || {}
74-
const props = (vm._props = {})
74+
const props = (vm._props = shallowReactive({}))
7575
// cache prop keys so that future props updates can iterate using Array
7676
// instead of dynamic object key enumeration.
7777
const keys: string[] = (vm.$options._propKeys = [])

src/v3/apiSetup.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Component } from 'types/component'
22
import { PropOptions } from 'types/options'
3+
import { toggleObserving } from '../core/observer'
34
import { def, invokeWithErrorHandling, isReserved, warn } from '../core/util'
45
import VNode from '../core/vdom/vnode'
56
import {
@@ -10,6 +11,7 @@ import {
1011
isObject
1112
} from '../shared/util'
1213
import { currentInstance, setCurrentInstance } from './currentInstance'
14+
import { shallowReactive } from './reactivity/reactive'
1315
import { isRef } from './reactivity/ref'
1416

1517
/**
@@ -29,13 +31,15 @@ export function initSetup(vm: Component) {
2931
const ctx = (vm._setupContext = createSetupContext(vm))
3032

3133
setCurrentInstance(vm)
34+
toggleObserving(false)
3235
const setupResult = invokeWithErrorHandling(
3336
setup,
3437
null,
35-
[vm._props, ctx],
38+
[vm._props || shallowReactive({}), ctx],
3639
vm,
3740
`setup`
3841
)
42+
toggleObserving(true)
3943
setCurrentInstance()
4044

4145
if (isFunction(setupResult)) {

test/unit/features/v3/apiSetup.spec.ts

+21-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { h, ref, reactive } from 'v3'
1+
import { h, ref, reactive, isReactive, toRef, isRef } from 'v3'
22
import { nextTick } from 'core/util'
33
import { effect } from 'v3/reactivity/effect'
44
import Vue from 'vue'
@@ -247,4 +247,24 @@ describe('api: setup context', () => {
247247
}).$mount()
248248
expect(spy).toHaveBeenCalled()
249249
})
250+
251+
// #12561
252+
it.only('setup props should be reactive', () => {
253+
const msg = ref('hi')
254+
255+
const Child = {
256+
props: ['msg'],
257+
setup: props => {
258+
expect(isReactive(props)).toBe(true)
259+
expect(isRef(toRef(props, 'foo'))).toBe(true)
260+
return () => {}
261+
}
262+
}
263+
264+
new Vue({
265+
setup() {
266+
return h => h(Child, { props: { msg } })
267+
}
268+
}).$mount()
269+
})
250270
})

0 commit comments

Comments
 (0)