如何创建两个指向同一个组件的Vue路由?
我需要创建两个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论