mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
12 lines
285 B
TypeScript
12 lines
285 B
TypeScript
|
import { App } from 'vue'
|
||
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
||
|
import Result from './src/index.vue'
|
||
|
|
||
|
Result.install = (app: App): void => {
|
||
|
app.component(Result.name, Result)
|
||
|
}
|
||
|
|
||
|
const _Result: SFCWithInstall<typeof Result> = Result
|
||
|
|
||
|
export default _Result
|