router.ts 172 B

1234567
  1. import { createRouter, createWebHashHistory } from 'vue-router'
  2. import routes from './routes'
  3. export default createRouter({
  4. history: createWebHashHistory(),
  5. routes
  6. })