[fixed] use router prerender

This commit is contained in:
mysper
2021-01-19 19:29:59 +08:00
parent 79f6cd15ec
commit 2c8c5a7a16
5 changed files with 209 additions and 6 deletions

View File

@@ -16,5 +16,6 @@ Vue.config.productionTip = false;
new Vue({
router,
store,
render: (h) => h(App)
render: (h) => h(App),
mounted: () => document.dispatchEvent(new Event("x-app-rendered")),
}).$mount('#app');