Skip to content

Commit

Permalink
Fix render function for fake components
Browse files Browse the repository at this point in the history
  • Loading branch information
jlpereira committed Sep 4, 2023
1 parent 7a7d917 commit 85030a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ssr/utils/registerFakeClientComponents.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export function registerFakeClientComponents(app) {
const filePaths = glob.sync('src/components/**/*.client.vue')
const vueComponent = defineComponent({
setup() {
return h('div')
return () => h('div')
}
})

Expand Down

0 comments on commit 85030a1

Please sign in to comment.