route.js 645 Bytes
/*
 * @Date: 2022-07-18 10:22:22
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2022-12-06 20:58:37
 * @FilePath: /data-table/src/route.js
 * @Description: 文件描述
 */
export default [{
  path: '/',
  component: () => import('@/views/index.vue'),
  meta: {
    title: '首页',
  }
}, {
  path: '/success',
  component: () => import('@/views/success.vue'),
  meta: {
    title: '提交成功',
  }
}, {
  path: '/stop',
  component: () => import('@/views/stop.vue'),
  meta: {
    title: '表单状态',
  }
}, {
  path: '/auth',
  component: () => import('@/views/auth.vue'),
  meta: {
    title: '授权页面',
  }
}];