vue-router之路由屬性配置說明(十)

代碼如下:

export default new Router({
    mode: 'history', //路由模式,取值爲history與hash
    base: '/', //打包路徑,默認爲/,可以修改
    routes: [
    {
        path: string, //路徑
        ccomponent: Component; //頁面組件
        name: string; // 命名路由-路由名稱
        components: { [name: string]: Component }; // 命名視圖組件
        redirect: string | Location | Function; // 重定向
        props: boolean | string | Function; // 路由組件傳遞參數
        alias: string | Array<string>; // 路由別名
        children: Array<RouteConfig>; // 嵌套子路由
        beforeEnter?: (to: Route, from: Route, next: Function) => void; // 路由單獨鉤子
        meta: any; // 自定義標籤屬性,比如:是否需要登錄
        icon: any; // 圖標
        // 2.6.0+
        caseSensitive: boolean; // 匹配規則是否大小寫敏感?(默認值:false)
        pathToRegexpOptions: Object; // 編譯正則的選項
    }
    ]})


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章