基础开发

This commit is contained in:
2024-09-01 17:24:23 +08:00
commit 81b4328042
63 changed files with 13149 additions and 0 deletions

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

@@ -0,0 +1,18 @@
import Vue from 'vue'
import Router from 'vue-router'
const Index = r => require.ensure([], () => r(require('@page/index')), 'Index')
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
redirect: '/index'
},
{
path: '/index',
component: Index
}
]
})