mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
14 lines
286 B
TypeScript
14 lines
286 B
TypeScript
import Col from './src/col'
|
|
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
const _Col = Col as SFCWithInstall<typeof Col>
|
|
|
|
_Col.install = (app: App) => {
|
|
app.component(_Col.name, _Col)
|
|
}
|
|
|
|
export default _Col
|
|
export const ElCol = _Col
|