Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit eda80d3

Browse files
committed
fix(framework/vue): fix server-renderer warning
1 parent 6ac4b32 commit eda80d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework/vue/head.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const Head = defineComponent({
77
setup(_props, ctx) {
88
const ssrHeadCollection: string[] | undefined = inject("ssrHeadCollection");
99
if (ctx.slots.default && ssrHeadCollection) {
10-
const children = parseSlots(ctx.slots.default());
10+
const children = ctx.slots.default();
1111
children.forEach((vnode) => {
1212
const { props } = vnode;
1313
// add srr attr

0 commit comments

Comments
 (0)