Skip to content

Commit cf1b48f

Browse files
committedOct 3, 2024··
fix(runtime-utils): pass global directives to renderSuspended
1 parent 73b8d7a commit cf1b48f

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed
 

‎examples/app-vitest-full/tests/nuxt/render-suspended.spec.ts

+10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import App from '~/app.vue'
77
import OptionsComponent from '~/components/OptionsComponent.vue'
88
import WrapperTests from '~/components/WrapperTests.vue'
99
import LinkTests from '~/components/LinkTests.vue'
10+
import DirectiveComponent from '~/components/DirectiveComponent.vue'
1011

1112
import ExportDefaultComponent from '~/components/ExportDefaultComponent.vue'
1213
import ExportDefineComponent from '~/components/ExportDefineComponent.vue'
@@ -77,6 +78,15 @@ describe('renderSuspended', () => {
7778
)
7879
})
7980

81+
it('respects directives registered in nuxt plugins', async () => {
82+
const component = await renderSuspended(DirectiveComponent)
83+
expect(component.html()).toMatchInlineSnapshot(`
84+
"<div id="test-wrapper">
85+
<div data-directive="true"></div>
86+
</div>"
87+
`)
88+
})
89+
8090
it('can pass slots to rendered components within nuxt suspense', async () => {
8191
const text = 'slot from render suspense'
8292
await renderSuspended(OptionsComponent, {

‎src/runtime-utils/render.ts

+1
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ export async function renderSuspended<T>(
166166
config: {
167167
globalProperties: vueApp.config.globalProperties,
168168
},
169+
directives: vueApp._context.directives,
169170
provide: vueApp._context.provides,
170171
components: { RouterLink },
171172
},

0 commit comments

Comments
 (0)
Please sign in to comment.