vue-router進行build無法正常顯示路由頁面
阿新 • • 發佈:2019-01-26
- 使用vue cli建立一個webpack工程
- 加入vue-router然後使用路由引入一個新的元件。這時路由和連結是這樣寫的
const router = new VueRouter({
mode: 'history',
base: __dirname,
routes: [
{
path: '/first',
component: firstCom
}
]
})
<a href="/first">Try this!</a>
- npm run dev檢視沒有問題
- npm run build打包
- 起一個服務(例如:python -m SimpleHTTPServer)然後檢視index.html頁面,發現路由會請求/first頁面。
- 解決的辦法:將路由配置中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>