@blueking/vxe-table
Version:
一个基于 vue 的 PC 端表格组件,支持增删改查、虚拟树、列拖拽,懒加载、快捷菜单、数据校验、树形结构、打印、导入导出、自定义模板、渲染器、JSON 配置式...
19 lines (14 loc) • 453 B
text/typescript
import { App } from 'vue'
import { VxeUI } from '../ui'
import VxeGridComponent from './src/grid'
export const VxeGrid = Object.assign({}, VxeGridComponent, {
install (app: App) {
app.component(VxeGridComponent.name as string, VxeGridComponent)
}
})
if (VxeUI.dynamicApp) {
VxeUI.dynamicApp.component(VxeGridComponent.name as string, VxeGridComponent)
}
VxeUI.component(VxeGridComponent)
export const Grid = VxeGrid
export default VxeGrid