mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
13 lines
269 B
JavaScript
13 lines
269 B
JavaScript
import VxeGrid from './src/grid'
|
|
import VXETable from '../v-x-e-table'
|
|
|
|
export const Grid = Object.assign(VxeGrid, {
|
|
install (Vue) {
|
|
VXETable.Grid = VxeGrid
|
|
VXETable.GridComponent = VxeGrid
|
|
Vue.component(VxeGrid.name, VxeGrid)
|
|
}
|
|
})
|
|
|
|
export default Grid
|