首次提交

This commit is contained in:
2021-09-09 13:33:57 +08:00
parent 0449d6b113
commit 4e842133cb
51 changed files with 16156 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import Vue from 'vue'
import Router from 'vue-router'
import home from '@/components/home'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
name: 'home',
component: home
}
]
})