router.js 292 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 import { createRouter, createWebHashHistory } from 'vue-router'; const router = createRouter({ history: createWebHashHistory('/index.html'), routes: [ { path: '/', name: 'mono2', component: () => import('./views/index.vue'), }, ], }); export default router;