下面我就為大家分享一篇解決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>
上面是我整理給大家的,希望今後對大家有幫助。
相關文章:
#vue.js的computed,filter,get ,set的用法及區別詳解
以上是如何解決vue-router中進行build無法正常顯示路由頁面方面的問題(詳細教學)的詳細內容。更多資訊請關注PHP中文網其他相關文章!