UNPKG

vxe-table

Version:

A PC-end table component based on Vxe UI, supporting copy-paste, data pivot table, and high-performance virtual list table solution.

38 lines (30 loc) 826 B
import { App } from 'vue' import { VxeUIExport, VxeGlobalConfig } from 'vxe-pc-ui' declare global { interface Window { VxeUITable: VxeUIExport /** * @deprecated */ VXETable: VxeUIExport } } /** * 已废弃,请使用 VxeUI * @deprecated */ export const VXETable: VxeUIExport /** * 已废弃,请使用 VxeUIExport * @deprecated */ export type VXETableCore = VxeUIExport export function install (app: App, options?: VxeGlobalConfig): void // Vxe core export * from 'vxe-pc-ui/types/ui' // Vxe Table export * from 'vxe-pc-ui/types/components/column' export * from 'vxe-pc-ui/types/components/colgroup' export * from 'vxe-pc-ui/types/components/table' export * from 'vxe-pc-ui/types/components/grid' export * from 'vxe-pc-ui/types/components/toolbar'