【发布时间】:2020-12-09 13:10:15
【问题描述】:
我正在使用 vue 2。我已经注册了路由。两条路线是memberships 和memberships/:id。
当我使用时:
this.$router.push({ path: 'memberships'} );
在此之后任何this.$router.push 都会导致追加到
http://localhost:8000/memberships/bronze
http://localhost:8000/memberships/silver
和http://localhost:8000/memberships/shop 代替http://localhost:8000/shop
和http://localhost:8000/memberships/deals 代替http://localhost:8000/deals
【问题讨论】:
标签: javascript vue.js vuejs2 path vue-router