码迷,mamicode.com
首页 > 其他好文 > 详细

vue-router之路由属性配置说明

时间:2020-04-02 19:49:42      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:meta   before   name   ash   base   cat   exp   命名   next   

export default new Router({
    mode: history//路由模式,取值为history与hash
    base///打包路径,默认为/,可以修改
    routes: [
    {
        path: string//路径
        component: Component; //页面组件
        name: string// 命名路由-路由名称
        components: ( ComponentName | ()=>import(‘页面地址‘) ); // 命名视图组件
        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; // 编译正则的选项
    }
    ]})

 

vue-router之路由属性配置说明

标签:meta   before   name   ash   base   cat   exp   命名   next   

原文地址:https://www.cnblogs.com/aidixie/p/12622451.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!