mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
23 lines
498 B
JavaScript
23 lines
498 B
JavaScript
import Vue from 'vue'
|
|
import VXETable from '../../src'
|
|
import VXETablePluginElement from 'vxe-table-plugin-element'
|
|
import VXETablePluginIView from 'vxe-table-plugin-iview'
|
|
import 'vxe-table-plugin-element/dist/style.css'
|
|
import 'vxe-table-plugin-iview/dist/style.css'
|
|
|
|
Vue.use(VXETable, {
|
|
scrollX: {
|
|
gt: 60,
|
|
oSize: 6,
|
|
rSize: 16,
|
|
vSize: 0
|
|
},
|
|
scrollY: {
|
|
gt: 500,
|
|
oSize: 25,
|
|
rSize: 70,
|
|
vSize: 0,
|
|
rHeight: 0
|
|
}
|
|
}, VXETablePluginElement, VXETablePluginIView)
|