Files
ClassContent/项目合集/电商App/ApiTest/src/router/index.js
2024-09-27 02:06:13 +08:00

16 lines
231 B
JavaScript

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