mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
272b8c76c8
* fix: some components miss install type * fix: some components miss install type
11 lines
336 B
TypeScript
11 lines
336 B
TypeScript
import TableColumn from '../table/src/tableColumn'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
const _TableColumn: SFCWithInstall<typeof TableColumn> = TableColumn as SFCWithInstall<typeof TableColumn>
|
|
|
|
_TableColumn.install = app => {
|
|
app.component(_TableColumn.name, _TableColumn)
|
|
}
|
|
|
|
export default _TableColumn
|