(Vue-router)在NuxtJS中用参数重定向另一个页面时,名称为'abc'的路由不存在。

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

product productlist.vue -----...If you want use name you must contain parent folders too:however personally i use static address 基于

pages/
--| product/
-----| productlist.vue
-----| productadd.vue
-----| productedit/
----------| _id.vue

Nuxtjs文档productlist.vue这是我的结构文件夹productedit/{id}

<v-btn class="mr-2" small color="primary" nuxt :to="{ name: 'productedit-id', params: { id: item.id } }">
    <v-icon>mdi-pencil</v-icon>
</v-btn>

,我想重定向到 当点击编辑按钮时,我使用了Nuxt-link来进行编辑然而,我总是得到页面 [vue-router] Route with name 'productedit-id' does not exist

404未找到

和控制台日志
vue.js vuejs2 nuxt.js vue-router
1个回答
1
投票

:to="{ name: 'product-productedit-id', params: { id: item.id } }"

我正在用NuxtJs(SSR类型)构建项目。我想在重定向另一个页面时传递param。根据Nuxtjs文档,我的结构文件夹页面是这样的------。

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