vue設(shè)置默認(rèn)首頁的操作
在router.js設(shè)置如下:
index就是默認(rèn)頁面
const routes = [// 公司項(xiàng)目{ path: ’/’, redirect: ’/index’ },{path:’/index’,component:index},{path:’/example’,component:example,redirect:’/edetail’,children:[{path:’/edetail’,component:edetail}]},{path:’/login’,component:login}]
不使用在根目錄設(shè)置router的方法,跳轉(zhuǎn)頁面帶不同的頭部信息時(shí)容易出現(xiàn)問題
補(bǔ)充知識(shí):vue-router默認(rèn)的首頁渲染設(shè)置
當(dāng)一個(gè)vue項(xiàng)目的頁面打開,總得有一個(gè)默認(rèn)的首頁組件自動(dòng)出現(xiàn)
不能只是點(diǎn)擊首頁的跳轉(zhuǎn)才出現(xiàn)
這個(gè)默認(rèn)的打開路由配置需要在router.js中的 VueRouter 實(shí)例中,改變r(jià)outes數(shù)組
const router = new VueRouter({ routes:[ { path:’/’, //redirect 是重新定向 redirect:’/home’ }, { path:’/home’, component:Home }]})
這樣設(shè)置之后,就將默認(rèn)的路由路徑設(shè)置為/home
以上這篇vue設(shè)置默認(rèn)首頁的操作就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. Java進(jìn)行Appium自動(dòng)化測試的實(shí)現(xiàn)2. UTF8轉(zhuǎn)成GB2312亂碼問題解決方案3. php中PHPUnit框架實(shí)例用法4. 詳細(xì)總結(jié)Java for循環(huán)的那些坑5. ajax實(shí)現(xiàn)頁面的局部加載6. Spring中@Value讀取properties作為map或list的操作7. 如何利用Python matplotlib繪制雷達(dá)圖8. 新手學(xué)python應(yīng)該下哪個(gè)版本9. css進(jìn)階學(xué)習(xí) 選擇符10. 詳解CSS偽元素的妙用單標(biāo)簽之美

網(wǎng)公網(wǎng)安備