mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-03 11:47:48 +08:00
20 lines
641 B
TypeScript
20 lines
641 B
TypeScript
import MessageBox from './src/messageBox'
|
|
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
const _MessageBox = MessageBox as SFCWithInstall<typeof MessageBox>
|
|
|
|
_MessageBox.install = (app: App) => {
|
|
app.config.globalProperties.$msgbox = _MessageBox
|
|
app.config.globalProperties.$messageBox = _MessageBox
|
|
app.config.globalProperties.$alert = _MessageBox.alert
|
|
app.config.globalProperties.$confirm = _MessageBox.confirm
|
|
app.config.globalProperties.$prompt = _MessageBox.prompt
|
|
}
|
|
|
|
export default _MessageBox
|
|
export const ElMessageBox = _MessageBox
|
|
|
|
export * from './src/message-box.type'
|