develop
This commit is contained in:
parent
d76ee19be7
commit
26609eb46c
11 changed files with 251 additions and 70 deletions
11
frontend/src/router/index.js
Normal file
11
frontend/src/router/index.js
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import { createRouter, createWebHashHistory } from "vue-router";
|
||||
import Home from "../components/pages/Home.vue";
|
||||
|
||||
const routes = [{ path: "/", component: Home }];
|
||||
|
||||
const router = createRouter({
|
||||
history: createWebHashHistory(),
|
||||
routes,
|
||||
});
|
||||
|
||||
export default router;
|
||||
Loading…
Add table
Add a link
Reference in a new issue