mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
19 lines
284 B
JavaScript
19 lines
284 B
JavaScript
import Vue from 'vue'
|
|
import Router from 'vue-router'
|
|
|
|
import Table1 from './views/Table1.vue'
|
|
|
|
Vue.use(Router)
|
|
|
|
export default new Router({
|
|
mode: 'history',
|
|
base: process.env.BASE_URL,
|
|
routes: [
|
|
{
|
|
path: '/',
|
|
name: 'Table1',
|
|
component: Table1
|
|
}
|
|
]
|
|
})
|