router.js 266 B

123456789101112131415
  1. import { createRouter, createWebHashHistory } from 'vue-router';
  2. import Home from './pages/Home.vue';
  3. const routes = [
  4. {
  5. path: '/',
  6. name: 'home',
  7. component: Home,
  8. },
  9. ];
  10. export default createRouter({
  11. routes,
  12. history: createWebHashHistory(),
  13. });