vue中通过路由跳转的三种方式

原文:https://blog.csdn.net/qq_40072782/article/details/82533477

router-view 实现路由内容的地方,引入组件时写到需要引入的地方
需要注意的是,使用vue-router控制路由则必须router-view作为容器。

通过路由跳转的三种方式

1、router-link 【实现跳转最简单的方法】

在select.vue文件中




3、this.$router.replace{path:‘/’ }类似,不再赘述  

  

转载于:https://www.cnblogs.com/robinunix/p/11065022.html

你可能感兴趣的:(vue中通过路由跳转的三种方式)