我正在以编程方式导航到此路线。
{
path: '/task/:taskId',
...
},
用这种方法:
itemClick(item) {
this.$router.push(`task/${item.id}`);
},
但是,当我已经在路上时,例如http://localhost:port/task/task-1 并调用此方法。它无法导航到http://localhost:port/task/task-2 而是进入默认路线并导航到http://localhost:port/