mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
5c01631136
* feat(empty): add empty * feat(empty): new component empty re #1100 * feat: update doc * feat: update scss * perf: update img * perf: update docs * fix: update
12 lines
277 B
TypeScript
12 lines
277 B
TypeScript
import { App } from 'vue'
|
|
import Empty from './src/index.vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
Empty.install = (app: App): void => {
|
|
app.component(Empty.name, Empty)
|
|
}
|
|
|
|
const _Empty: SFCWithInstall<typeof Empty> = Empty
|
|
|
|
export default _Empty
|