globalRoutes.js 621 B

12345678910111213141516171819202122232425
  1. /*
  2. * @Author: your name
  3. * @Date: 2021-01-13 17:37:21
  4. * @LastEditTime: 2021-01-18 09:45:13
  5. * @LastEditors: Please set LastEditors
  6. * @Description: In User Settings Edit
  7. * @FilePath: \vue3-element-admin\src\router\globalRoutes.js
  8. */
  9. export default [
  10. {
  11. path: "/login",
  12. name: "Login",
  13. component: () => import("@/views/Login.vue"),
  14. },
  15. {
  16. path: "/authentic_login",
  17. name: "AuthenticLogin",
  18. component: () => import("@/views/AuthenticLogin.vue"),
  19. },
  20. {
  21. path: "/404",
  22. name: "404",
  23. component: () => import("@/views/404.vue"),
  24. },
  25. ];