0
我現在有一個非常簡單的頁面,現在我只是爲將來的開發做準備,但現在我的網址不斷變化,現在暫停。爲什麼我的url不斷被vue.js路由改變?
import shipmentInformation from './shipment-information.vue';
Vue.use(VueRouter);
let router = new VueRouter({
base: '/QuickQuote/QuickQuoteRefactor/',
routes: [
{ name: 'shipmentInformation', path: '/', component: shipmentInformation }
]
});
new Vue({
router
}).$mount('#quickQuoteApp')
這是#quickQuoteApp包含<router-view>
元素的網頁上運行。用戶通過導航到(在本地計算機上)localhost/QuickQuote/QuickQuoteRefactor
來到此頁面。組件加載和我看到哈希得到添加到一秒鐘(localhost/QuickQuote/QuickQuoteRefactor#
)的URL的末尾之前,它由於某種原因更改爲localhost/#/
。
關於爲什麼會發生這種情況的任何想法。我認爲'基礎'選項應該考慮到這一點。