這篇文章主要介紹vue.js中打開(kāi)新頁(yè)面的方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
目前成都創(chuàng)新互聯(lián)已為成百上千家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)絡(luò)空間、成都網(wǎng)站托管、企業(yè)網(wǎng)站設(shè)計(jì)、丹江口網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。
vue.js中打開(kāi)新頁(yè)面的方法:1、【router-link】跳轉(zhuǎn),代碼為【
】;2、通過(guò)【this.$router.push】跳轉(zhuǎn)。
vue.js中打開(kāi)新頁(yè)面的方法:
1.router-link跳轉(zhuǎn)
// 直接寫上跳轉(zhuǎn)的地址link跳轉(zhuǎn) // 添加參數(shù)// 參數(shù)獲取 id = this.$route.query.id // 新窗口打開(kāi) ```javascript
2.this.$router.push跳轉(zhuǎn)
```javascript toDeail (e) { this.$router.push({path: "/detail", query: {id: e}}) } // 參數(shù)獲取 id = this.$route.query.id toDeail (e) { this.$router.push({name: "/detail", params: {id: e}}) } // 注意地址需寫在 name后面 //參數(shù)獲取,params和query區(qū)別,query參數(shù)在地址欄顯示,params的參數(shù)不在地址欄顯示 id = this.$route.params.id
3.this.$router.replace跳轉(zhuǎn)
//和push的區(qū)別,push有記錄一個(gè)history,replace沒(méi)有 toDeail (e) { this.$router.replace({name: '/detail', params: {id: e}}) }
4. resolve跳轉(zhuǎn)
resolve頁(yè)面跳轉(zhuǎn)可用新頁(yè)面打開(kāi) 2.1.0版本后,使用路由對(duì)象的resolve方法解析路由,可以得到location、router、href等目標(biāo)路由的信息。得到href就可以使用window.open開(kāi)新窗口了(這邊應(yīng)用:https://segmentfault.com/q/1010000009557100下的一個(gè)回答) toDeail (e) { const new = this.$router.resolve({name: '/detail', params: {id: e}}) window.open(new.href,'_blank') }
以上是“vue.js中打開(kāi)新頁(yè)面的方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!