跳轉方式:1、使用「
本教學操作環境:windows7系統、vue2.9.6版,DELL G3電腦。
router-view 實作路由內容的地方,引入元件時寫到需要引入的地方
#需要注意的是,使用vue-router控制路由則必須router-view作為容器。
透過路由跳轉的三種方式
#1、router-link 【實作跳轉最簡單的方法】
<router-link to='需要跳转到的页面的路径>
瀏覽器在解析時,將它解析成一個類似 的標籤。
#div和css样式略 <li > <router-link to="keyframes">点击验证动画效果 </router-link> </li>
別忘記給需要跳躍的路徑在需要提前在router/index.js下引入哦。
【相關推薦:《vue.js教學》】
2、this.$router.push({ path: '/user'})
常用於路由傳參,用法同第三種
區別:
1)、query引入方式
params只能用name來引入路由
而query 要用path引入
2)、query傳遞方式
類似於我們ajax中get傳參,在瀏覽器網址列中顯示參數
params則類似post,在瀏覽器網址列中不顯示參數
在helloworld.vue檔中
<template> ..... <li @click="change">验证路由传参</li> </template> <script> export default { data () { return { id:43, //需要传递的参数 } }, methods:{ change(){ this.$router.push({ //核心语句 path:'/select', //跳转的路径 query:{ //路由传参时push和query搭配使用 ,作用时传递参数 id:this.id , } }) } } } </script>
在select. vue檔案中
<template> <select> <option value="1" selected="selected">成都</option> <option value="2">北京</option> </select> </template> <script> export default{ data(){ return{ id:'', } }, created(){ //生命周期里接收参数 this.id = this.$route.query.id, //接受参数关键代码 console.log(this.id) } } </script>
3、this.$router.replace{path:'/' }類似,不再贅述
更多程式相關知識,請訪問:程式設計影片! !
以上是vue路由跳轉的三種方式是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!