mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
3138dea797
- Add noop install for all sub components for supress the warning
10 lines
304 B
TypeScript
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)
|