index.js 349 B

12345678910111213141516171819202122
  1. import { createRouter, createWebHashHistory } from 'vue-router'
  2. import Home from '../demo/Home.vue'
  3. import Test from '../demo/Test.vue'
  4. const routes = [
  5. {
  6. path: '/',
  7. component: Home
  8. },
  9. {
  10. path: '/test',
  11. component: Test
  12. }
  13. ]
  14. const router = createRouter({
  15. history: createWebHashHistory(),
  16. routes
  17. })
  18. export default router