mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 12:48:04 +08:00
14 lines
315 B
TypeScript
14 lines
315 B
TypeScript
import Empty from './src/index.vue'
|
|
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
Empty.install = (app: App): void => {
|
|
app.component(Empty.name, Empty)
|
|
}
|
|
|
|
const _Empty = Empty as SFCWithInstall<typeof Empty>
|
|
|
|
export default _Empty
|
|
export const ElEmpty = _Empty
|