vue-router中有layout的布局写法

 路由数据demo

export default [
  '/',
  '/activity/application',
  '/activity/change',
  '/activity/applicationDetail',
  '/activity/promotion',
  '/promotion/reimburse',
  '/promotion/join',
  '/promotion/balance',
  '/promotion/attendance',
  '/promotion/person',
  '/promotion/atdList',
  '/promotion/bank',
  '/system/index',
  '/system/search',
  '/schedule/join',
  '/schedule/attendance',
  '/schedule/balance',
  '/promotion-fee/Bill',
  '/promotion-fee/Payment',
  '/promotion-fee/ProjectList',
  '/promotion-fee/Supplier',
  '/promotion-fee/SupplierDetail',
  '/promotion-fee/HistoryMaterials',
  '/promotion-fee/UploadFile',
  '/promotion-fee/ProjectDetail',
  '/promotion-fee/SettlementSheet',
  '/promotion-fee/PaymentDetail',
  '/promotion-fee/CurrentData',
  '/promotion-fee/ReconciliationList',
  '/promotion-fee/UnspecifiedDetails',
  '/promotion-fee/Synchronization',
  '/promotion-fee/SupplierModificationHistory'
]

 router index.js

import Vue from 'vue'
import Router from 'vue-router'
//import ui from './r.ui'
import cms from './r.cms'

let routesData =  cms
let routesChild = []

routesData.map((x) => {
  routesChild.push({
    path: x,
    component: resolve => require([x === '/' ? '@/pages/welcome' : '@/pages' + x], resolve)
  })
})

let routes = [
  {
    path: '/',
    component: resolve => require(['@/components/layout'], resolve),
    children: routesChild
  },
  {
    path: '/login',
    component: resolve => require(['@/pages/login'], resolve)
  }
]

个人博客:jilezhainanshe.com​​​​​​​

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值