nuxt.js 怎样配置路由带参?

nuxt.config.js覆写router:

module.exports = {
  router: {
    base: '/',
    routes: [
      {        name: 'index',        path: '/',
        component: 'pages/index.vue'
      },
      {        name: 'test',        path: '/test(.*?)?', //path: '/test(.*?)?',
        component: 'pages/test'
      },
      {        name: 'testtwo',        path: '/testtwo',
        component: 'pages/testtwo'
      }
    ],

  }
}

目的想配置可以解析路由上的任意多个params,
但是:localhost:3000/test/1 就报找不到页面,


慕森卡
浏览 1569回答 1
1回答

繁花如伊

参考一下官方文档,里面介绍的很详细路由
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript