這次帶給大家vue-router進行build時不顯示路由頁面怎麼處理,處理vue-router進行build時不顯示路由頁面的注意事項有哪些,下面就是實戰案例,一起來看一下。
使用vue cli建立一個webpack工程
加入vue-router然後使用路由引入一個新的元件。這時路由和連結是這樣寫的
const router = new VueRouter({ mode: 'history', base: dirname, routes: [ { path: '/first', component: firstCom } ] })
<a href="/first" rel="external nofollow" >Try this!</a>
1、npm run dev查看沒有問題
2、npm run build打包
3、起一個服務(例如: python -m SimpleHTTPServer)然後查看index.html頁面,發現路由會請求/first頁面。
4、解決的方法:將路由配置中history改為hash,連結中/first改為/#/first。問題解決。
============2017.8.24更新================
#又找了點資料發現,其實router的mode使用history是可以的。是我在做跳轉的時候出現了問題。我想當然的使用了window.location.href=”“,其實應該使用router.push。程式碼裡面的handleSelect是因為使用了element ui出現的一個訊息處理方法。可以理解為當按鍵點擊時觸發該方法,如果按鍵的key是2,那麼跳到first,key是3跳到second。
<script> export default { data () { return { } }, methods: { handleSelect(key, keyPath) { if (key == 2){ this.$router.push('first'); } else if (key == 3){ this.$router.push('second'); } } } } </script>
我相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是vue-router進行build時不顯示路由頁面怎麼處理的詳細內容。更多資訊請關注PHP中文網其他相關文章!