如何在标签中使用nuxt动态路由?

时间:2019-04-29 09:38:37

标签: vue.js routes vue-router nuxt.js

这是我在nuxt路由器中的动态路由:

{
      path: "/artist/:artist?",
      component: _088d981d,
      children: [{
        path: "",
        component: _284bd1c5,
        name: "artist-artist"
      }, {
        path: "related",
        component: _75d685de,
        name: "artist-artist-related"
      }]
    },

当我在nuxt-link中使用/artist/:artist?时,URL不会更改为动态路由,并且其/ artist /:artist仍然是?在浏览器上的标签中。

它应该类似于/ artist / card-b。

enter image description here

我的艺术家单页路线完全应该是这样的: / artist / cardi-b 我想要关于这位艺术家的页面: / artist / cardi-b / about

在这里cardi-b是一位艺术家,它的动态感大约是嵌套的。

我应该使用哪种结构?

0 个答案:

没有答案