在 /router/index.js 裡配置 父子導航欄,並在子導航欄增加匯出index.vue
//配置導航和頁面路徑
const goods = () => import('@/pages/goods/')
const goodslist = () => import('@/pages/goods/goodslist')
const shopwindow = () => import('@/pages/goods/shopwindow')
const mycart = () => import('@/pages/goods/mycart')
vue.use(router)
//匯出
export default new router(,,,
]},]},
]})
index.vue
專案結構:
頁面效果:
搜尋框樣式沒調成響應式的,所以錯亂了。
Vue 設定導航欄 側邊欄為公共頁面
首先,專案結構如下 此時執行會發現,所有的頁面都被加上了這兩個公共頁面,而實際場景中,我們往往希望登入頁是不需要導航欄和側邊欄的,那麼就需要規避掉登入頁。index.js 如下 import vue from vue import router from vue router import hell...
vue專案中底部導航蓋住頁面內容解決思路
在內容頁面寫乙個方法 a 傳入乙個頁面中的引數 用來判斷頁面中是否有資料 有資料的話在混入中的mounted方法中執行內容頁面的方法 a a方法 定義乙個常量 底部導航的高度 this.refs.recommend.style.bottom bottom recommend為內容頁面的dom 加過b...
Vue 專案斷網時跳轉到網路錯誤頁面
在專案中做異常處理時經常會遇到對網路錯誤的處理 處理的方案有很多,我只記錄我在專案中使用的一種 首先新增網路錯誤頁面 根據各自需求 2.在router中新增錯誤頁面的路由 這裡面需要注意,不能使用路由懶載入 mounted window.addeventlistener online 在斷網時會記錄...