您好,登錄后才能下訂單哦!
這篇文章主要介紹vue設置默認首頁的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
在router.js設置如下:
index就是默認頁面
const routes = [ // 公司項目 { path: '/', redirect: '/index' }, {path:'/index',component:index}, { path:'/example', component:example, redirect:'/edetail', children:[ {path:'/edetail',component:edetail} ] }, {path:'/login',component:login} ]
不使用在根目錄設置router的方法,跳轉頁面帶不同的頭部信息時容易出現問題
補充知識:vue-router默認的首頁渲染設置
當一個vue項目的頁面打開,總得有一個默認的首頁組件自動出現
不能只是點擊首頁的跳轉才出現
這個默認的打開路由配置需要在router.js中的 VueRouter 實例中,改變routes數組
const router = new VueRouter({ routes:[ { path:'/', //redirect 是重新定向 redirect:'/home' }, { path:'/home', component:Home } ] })
這樣設置之后,就將默認的路由路徑設置為/home
以上是vue設置默認首頁的方法的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。