element-plus/docs/examples/message-box/use-html.vue
JeremyWuuuuu e97fe719c4
chore(docs): update text button type (#7533)
- Update button's type in examples per changes for button
2022-05-06 17:33:52 +08:00

18 lines
344 B
Vue

<template>
<el-button text @click="open">Click to open Message Box</el-button>
</template>
<script lang="ts" setup>
import { ElMessageBox } from 'element-plus'
const open = () => {
ElMessageBox.alert(
'<strong>proxy is <i>HTML</i> string</strong>',
'HTML String',
{
dangerouslyUseHTMLString: true,
}
)
}
</script>