You need to sign in or sign up before continuing.
route.js 537 Bytes
/*
 * @Date: 2023-09-01 10:29:30
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2024-09-06 17:26:37
 * @FilePath: /custom_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: '/auth',
  component: () => import('@/views/auth.vue'),
  meta: {
    title: '授权页面',
  }
}];