脚手架搭建

This commit is contained in:
Andy Leong
2022-07-26 18:26:27 +08:00
commit 30727f4f65
38 changed files with 1099 additions and 0 deletions

10
src/router/index.js Normal file
View File

@@ -0,0 +1,10 @@
import { createRouter, createWebHashHistory } from 'vue-router';
const router = createRouter({
history: createWebHashHistory(),
routes: [
{ path: '/', component: () => import('@/views/Home.vue') }
]
});
export default router