Nuxt.js路由通配符

问题描述 投票:0回答:1

因此Nuxt.js根据文件树in the pages folder生成自己的路由。如何添加通配符路由?我正在构建一个简单的页面,希望所有重定向都转到一个特定的URL,如下所示:

const routes = [
    { path: '*', component: App }
]

我必须把它放在哪里?

nuxt.js next.js
1个回答
0
投票

我认为这篇文章回答了它:

How to use * (asterisk) in NuxtJs route?

I需要的结构,如下所示:

pages -> _ -> index.vue

© www.soinside.com 2019 - 2024. All rights reserved.