消毒机前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
390 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. import { createRouter, createWebHashHistory } from 'vue-router'
  2. const Home = () => import('@/pages/Home')
  3. const Login = () => import('@/pages/Login')
  4. // 配置路由信息
  5. const routes = [
  6. {
  7. path: '/',
  8. component: Login,
  9. },
  10. {
  11. path: '/home',
  12. component: Home,
  13. },
  14. ]
  15. const router = createRouter({
  16. routes,
  17. history: createWebHashHistory(),
  18. })
  19. export default router