新型管道消毒机前端代码
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.

11 lines
199 B

2 years ago
  1. import { createRouter, createWebHistory } from 'vue-router'
  2. // 配置路由信息
  3. const routes = []
  4. const router = createRouter({
  5. routes,
  6. history: createWebHistory(),
  7. })
  8. export default router