vue三種傳參方式

2022-05-22 23:51:16 字數 734 閱讀 6090

子元件通過$route.name接收引數

,

子元件接收:

}

第二種:通過router-link中的to屬性

對應路由配置:

通過路由中的name屬性來確定匹配的路由,通過params來傳遞引數(params是乙個物件,裡面是key:value的形式):

gohome |

子元件接收:

this.$route.params.username
this.$route.params.id

或者插值形式直接展示在頁面 }-}

第二種:通過url傳參

路由引數:

子元件接受引數($route.params):

}-}

第三種:使用path來匹配路由元件,然後通過query來傳遞引數。這種情況下引數會在url後面顯示?id=?

this.$router.push(

})

對應路由配置:

子元件接收引數:

this.$route.query.id

vue路由傳參三種方式

vue路由傳參分為三種方式 url形如 http localhost 8080 path 1 true 1 方法中使用模板字串 methods 2 在路由配置檔案中進行引數名配置 3 子頁面通過params接收引數 export default test02 created this console...

Vue路由傳參的三種方式

第一種 父元件 getdescribe1 id 路由 另外路由需要配置,在path中新增 id來對應 router.push 中path攜帶的引數 這種方法引數值會跟在url後面,子元件通過this.route.params.id獲取傳過去的引數 第二種父元件 通過路由屬性中的name來確定匹配的路...

vue路由傳參的三種基本方式

this.router.push 路由配置 在home元件中獲取引數值 this.route.params.id 複製 通過name來匹配路由,通過param來傳遞引數 this.router.push 用params傳遞引數,不使用 id home元件中獲取引數 this.route.params...