mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
272b8c76c8
* fix: some components miss install type * fix: some components miss install type
15 lines
557 B
TypeScript
15 lines
557 B
TypeScript
import MessageBox from './src/messageBox'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
const _MessageBox: SFCWithInstall<typeof MessageBox> = MessageBox as SFCWithInstall<typeof MessageBox>
|
|
|
|
_MessageBox.install = 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
|