资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

vue+elementtabs选项卡分页效果

本文实例为大家分享了vue+element tabs选项卡分页效果的具体代码,供大家参考,具体内容如下

公司主营业务:网站设计、成都网站设计、移动网站开发等业务。帮助企业客户真正实现互联网宣传,提高企业的竞争能力。成都创新互联是一支青春激扬、勤奋敬业、活力青春激扬、勤奋敬业、活力澎湃、和谐高效的团队。公司秉承以“开放、自由、严谨、自律”为核心的企业文化,感谢他们对我们的高要求,感谢他们从不同领域给我们带来的挑战,让我们激情的团队有机会用头脑与智慧不断的给客户带来惊喜。成都创新互联推出邹平免费做网站回馈大家。

文件目录:

vue+element tabs选项卡分页效果

功能展示:

vue+element tabs选项卡分页效果

vue+element tabs选项卡分页效果

路由配置:

{
  path: '/account',
  component: ()=> import('../components/home/home.vue'),  //布局页面
  redirect: '/account/all-account/list', //定向到list路径
  name: '账号管理',
  children: [
   {
    path: '/account/all-account/list',
    redirect: '/account/all-account/staff', //定向到staff路径
    name: '员工管理',
    component: () => import('../components/view/account/index.vue'),
    children: [
     {
      path: '/account/all-account/staff',
      component: () => import('../components/view/account/account.vue'),
      hidden: true
     },
     {
      path: '/account/all-account/agent',
      name: '代理人账号',
      component: () => import('../components/view/account/agent.vue'),
      hidden: true
     },
     {
      path: '/account/all-account/department',
      name: '部门设置',
      component: () => import('../components/view/account/department.vue'),
      hidden: true
     },
     {
      path: '/account/all-account/role',
      name: '角色权限设置',
      component: () => import('../components/view/account/role.vue'),
      hidden: true
     },
     {
      path: '/account/all-account/city',
      name: '城市管理',
      component: () => import('../components/view/account/city.vue'),
      hidden: true
     },
    ]
   },
}

组件代码:

index.vue

account.vue




其他tabs分页的组件:

staff.vue  其他类似