Skip to content
On this page

currentRoute.meta无法获取值

今天碰到一个问题,在首页中抓取route meta无法获取meta的配置信息,解决方法如下:

js
// 在main.ts里面要修改成
const app = createApp(App)
app.use(router)

router
    .isReady()
    .then(
        () => app.mount('#app')
    )