- 在App.vue中加入
created() {
if (this.$router.path !== "/home" || this.$router.path !== "/") {
this.$router.replace("/");
}
}
-
但是不知道為啥會(huì)有一個(gè)報(bào)錯(cuò),但不影響項(xiàng)目運(yùn)行
bug是因?yàn)関ue有bug 解決:
npm i vue-router@3.0 -S
created() {
if (this.$router.path !== "/home" || this.$router.path !== "/") {
this.$router.replace("/");
}
}
但是不知道為啥會(huì)有一個(gè)報(bào)錯(cuò),但不影響項(xiàng)目運(yùn)行
bug是因?yàn)関ue有bug 解決:
npm i vue-router@3.0 -S
