美文网首页前端
vue-router笔记

vue-router笔记

作者: 吴宪峰 | 来源:发表于2019-03-26 14:26 被阅读0次
routes: [{
            path: '/admin',     // url
            name: 'admin',
            component: AppLayout,  //组件 
            children: [{  
                path: 'basis',  // 下级url  匹配 '/admin/basis'
                name: 'basis',
                component: Basis, //组件
                children: [{
                    path: 'moneytype', // 匹配 '/admin/basis/moneytype'
                    name: 'moneytype',
                    component: BasisTable,
                }, {
                    path: 'voucher',  // 匹配 '/admin/voucher'
                    name: 'voucher',
                    component: Voucher,
                }]
            }]
        }

相关文章

网友评论

    本文标题:vue-router笔记

    本文链接:https://www.haomeiwen.com/subject/gypgvqtx.html