element-plus/packages/components/table/index.ts
jeremywu 3138dea797
fix(components): sub components no install issue (#3615)
- Add noop install for all sub components for supress the warning
2021-09-24 19:11:56 +08:00

10 lines
304 B
TypeScript

import { withInstall, withNoopInstall } from '@element-plus/utils/with-install'
import Table from './src/table.vue'
import TableColumn from './src/tableColumn'
export const ElTable = withInstall(Table, {
TableColumn,
})
export default ElTable
export const ElTableColumn = withNoopInstall(TableColumn)