Skip to content

Commit 2263948

Browse files
authored
fix: directives shorthand normalize error (#12744)
fix #12743
1 parent 5221d4d commit 2263948

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

src/core/vdom/modules/directives.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,15 @@ function normalizeDirectives(
103103
}
104104
res[getRawDirName(dir)] = dir
105105
if (vm._setupState && vm._setupState.__sfc) {
106-
dir.def = dir.def || resolveAsset(vm, '_setupState', 'v-' + dir.name)
106+
const setupDef = dir.def || resolveAsset(vm, '_setupState', 'v-' + dir.name)
107+
if (typeof setupDef === 'function') {
108+
dir.def = {
109+
bind: setupDef,
110+
update: setupDef,
111+
}
112+
} else {
113+
dir.def = setupDef
114+
}
107115
}
108116
dir.def = dir.def || resolveAsset(vm.$options, 'directives', dir.name, true)
109117
}

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

+13
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,19 @@ describe('api: setup context', () => {
251251
expect(spy).toHaveBeenCalled()
252252
})
253253

254+
// #12743
255+
it('directive resolution for shorthand', () => {
256+
const spy = vi.fn()
257+
new Vue({
258+
setup: () => ({
259+
__sfc: true,
260+
vDir: spy
261+
}),
262+
template: `<div v-dir />`
263+
}).$mount()
264+
expect(spy).toHaveBeenCalled()
265+
})
266+
254267
// #12561
255268
it('setup props should be reactive', () => {
256269
const msg = ref('hi')

0 commit comments

Comments
 (0)