route.js 432 Bytes
/*
 * @Date: 2023-09-01 10:29:30
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2024-07-23 10:34:10
 * @FilePath: /temple_material_request/src/route.js
 * @Description: 文件描述
 */
export default [{
  path: '/',
  component: () => import('@/views/index.vue'),
  meta: {
    title: '首页',
  }
}, {
  path: '/auth',
  component: () => import('@/views/auth.vue'),
  meta: {
    title: '授权页面',
  }
}];