whitelist.js 210 B

123456789101112131415
  1. const LOGIN = () => import("@/views/login/index.vue")
  2. // 白名单
  3. export const systemRoutes = [
  4. {
  5. path: "/login",
  6. name: "login",
  7. component: LOGIN,
  8. meta: {
  9. title: '登录'
  10. }
  11. }
  12. ]