File tree 1 file changed +4
-7
lines changed
1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -55,11 +55,6 @@ export function createApp() {
55
55
const data = initData ( router . route )
56
56
app . provide ( dataSymbol , data )
57
57
58
- if ( inBrowser ) {
59
- // dynamically update head tags
60
- useUpdateHead ( router . route , data . site )
61
- }
62
-
63
58
// install global components
64
59
app . component ( 'Content' , Content )
65
60
app . component ( 'ClientOnly' , ClientOnly )
@@ -85,7 +80,7 @@ export function createApp() {
85
80
} )
86
81
}
87
82
88
- return { app, router }
83
+ return { app, router, data }
89
84
}
90
85
91
86
function newApp ( ) : App {
@@ -145,10 +140,12 @@ function shouldHotReload(payload: any): boolean {
145
140
}
146
141
147
142
if ( inBrowser ) {
148
- const { app, router } = createApp ( )
143
+ const { app, router, data } = createApp ( )
149
144
150
145
// wait until page component is fetched before mounting
151
146
router . go ( ) . then ( ( ) => {
147
+ // dynamically update head tags
148
+ useUpdateHead ( router . route , data . site )
152
149
app . mount ( '#app' )
153
150
} )
154
151
}
You can’t perform that action at this time.
0 commit comments