mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
29 lines
589 B
Vue
29 lines
589 B
Vue
|
<template>
|
||
|
<el-button type="text" @click="open">Click to open the Message Box</el-button>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent } from 'vue'
|
||
|
import { ElMessageBox, ElMessage } from 'element-plus'
|
||
|
|
||
|
export default defineComponent({
|
||
|
setup() {
|
||
|
const open = () => {
|
||
|
ElMessageBox.alert('This is a message', 'Title', {
|
||
|
confirmButtonText: 'OK',
|
||
|
callback: (action) => {
|
||
|
ElMessage({
|
||
|
type: 'info',
|
||
|
message: `action: ${action}`,
|
||
|
})
|
||
|
},
|
||
|
})
|
||
|
}
|
||
|
|
||
|
return {
|
||
|
open,
|
||
|
}
|
||
|
},
|
||
|
})
|
||
|
</script>
|