mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
22 lines
479 B
TypeScript
22 lines
479 B
TypeScript
import { Loading } from './src/service'
|
|
import { vLoading } from './src/directive'
|
|
|
|
import type { App } from 'vue'
|
|
|
|
// installer and everything in all
|
|
export const ElLoading = {
|
|
install(app: App) {
|
|
app.directive('loading', vLoading)
|
|
app.config.globalProperties.$loading = Loading
|
|
},
|
|
directive: vLoading,
|
|
service: Loading,
|
|
}
|
|
|
|
export default ElLoading
|
|
|
|
export const ElLoadingDirective = vLoading
|
|
export const ElLoadingService = Loading
|
|
|
|
export * from './src/types'
|