Skip to content

Commit

Permalink
fix: remove 404 from title on initial route (#590)
Browse files Browse the repository at this point in the history
fix #589
  • Loading branch information
userquin committed May 6, 2022
1 parent d655988 commit 216e129
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/client/app/index.ts
Expand Up @@ -55,11 +55,6 @@ export function createApp() {
const data = initData(router.route)
app.provide(dataSymbol, data)

if (inBrowser) {
// dynamically update head tags
useUpdateHead(router.route, data.site)
}

// install global components
app.component('Content', Content)
app.component('ClientOnly', ClientOnly)
Expand All @@ -85,7 +80,7 @@ export function createApp() {
})
}

return { app, router }
return { app, router, data }
}

function newApp(): App {
Expand Down Expand Up @@ -145,10 +140,12 @@ function shouldHotReload(payload: any): boolean {
}

if (inBrowser) {
const { app, router } = createApp()
const { app, router, data } = createApp()

// wait until page component is fetched before mounting
router.go().then(() => {
// dynamically update head tags
useUpdateHead(router.route, data.site)
app.mount('#app')
})
}

0 comments on commit 216e129

Please sign in to comment.