提问人:Vladimir Golub 提问时间:11/13/2023 更新时间:11/13/2023 访问量:14
如何在Nuxt2中动态添加新路由?
How to add new route dynamically in Nuxt2?
问:
我有路由,这取决于网站的域。
以前我用过.现在,我不能使用它,因为我将一个副本用于不同的域。extendRoutes
我尝试在nuxtServerInit和中间件中使用,但没有用。router.addRoute
const routes = app.router.getRoutes();
const { components } = routes.find(route => route.path === '/about')
app.router.addRoute({
path: '/about-test',
name: 'about111',
component: components['default']
});
答: 暂无答案
评论