如何创建两个指向同一个组件的Vue路由?

发布于 2025-01-13 05:18:28 字数 365 浏览 0 评论 0原文

我需要创建两个 Vue 路由 /items/:id/items/new

到目前为止我所做的:

{ path: '/items/:id', component: Item },
{ path: '/items/new', component: Item },

在我正在处理的项目的上下文中,Item 组件负责查看现有项目并创建新项目。

有没有一种方法可以将两个配置行合并为一个?就像(伪代码)

{ path: '/items/(:id || new)', component: Item }

I need to create two Vue routes /items/:id and /items/new.

What I did so far:

{ path: '/items/:id', component: Item },
{ path: '/items/new', component: Item },

In the context of the project I am working on, Item component is responsible for viewing an existing item and creating a new one.

Is there a way to merge the two config lines in a single one? like (pseudo code)

{ path: '/items/(:id || new)', component: Item }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文