Skip to content

Commit 2d67641

Browse files
committed
fix: remove wrong observe toggle, properly disable tracking in setup()
1 parent 9d54f8b commit 2d67641

File tree

2 files changed

+30
-3
lines changed

2 files changed

+30
-3
lines changed

src/v3/apiSetup.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Component } from 'types/component'
22
import { PropOptions } from 'types/options'
3-
import { toggleObserving } from '../core/observer'
3+
import { popTarget, pushTarget } from '../core/observer/dep'
44
import { def, invokeWithErrorHandling, isReserved, warn } from '../core/util'
55
import VNode from '../core/vdom/vnode'
66
import {
@@ -31,15 +31,15 @@ export function initSetup(vm: Component) {
3131
const ctx = (vm._setupContext = createSetupContext(vm))
3232

3333
setCurrentInstance(vm)
34-
toggleObserving(false)
34+
pushTarget()
3535
const setupResult = invokeWithErrorHandling(
3636
setup,
3737
null,
3838
[vm._props || shallowReactive({}), ctx],
3939
vm,
4040
`setup`
4141
)
42-
toggleObserving(true)
42+
popTarget()
4343
setCurrentInstance()
4444

4545
if (isFunction(setupResult)) {

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

+27
Original file line numberDiff line numberDiff line change
@@ -267,4 +267,31 @@ describe('api: setup context', () => {
267267
}
268268
}).$mount()
269269
})
270+
271+
it('should not track dep accessed in setup', async () => {
272+
const spy = vi.fn()
273+
const msg = ref('hi')
274+
275+
const Child = {
276+
setup: () => {
277+
msg.value
278+
return () => {}
279+
}
280+
}
281+
282+
new Vue({
283+
setup() {
284+
return h => {
285+
spy()
286+
return h(Child)
287+
}
288+
}
289+
}).$mount()
290+
291+
expect(spy).toHaveBeenCalledTimes(1)
292+
293+
msg.value = 'bye'
294+
await nextTick()
295+
expect(spy).toHaveBeenCalledTimes(1)
296+
})
270297
})

0 commit comments

Comments
 (0)