1. 程式人生 > >vue設定預設首頁

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的方法,跳轉頁面帶不同的頭部資訊時容易出現問題