123456789101112131415161718 |
- import { createRouter , createWebHashHistory } from 'vue-router';
- import Home from "./vue/Home.vue";
- import test from "./vue/test.vue";
- import About from "./vue/About.vue";
- const routes=[
- { path:'/',redirect:'/home' },
- { path:'/home',component:Home },
- { path:'/test',component:test },
- { path:'/about',component:About }
- ];
- const router = createRouter({
- routes,
- history:createWebHashHistory()
- });
- export default router;
|