raw-html.vue 338 B

123456789101112131415
  1. <template>
  2. <el-button plain @click="open"> Use HTML String </el-button>
  3. </template>
  4. <script lang="ts" setup>
  5. import { ElNotification } from 'element-plus'
  6. const open = () => {
  7. ElNotification({
  8. title: 'HTML String',
  9. dangerouslyUseHTMLString: true,
  10. message: '<strong>This is <i>HTML</i> string</strong>',
  11. })
  12. }
  13. </script>