Skip to content

Render just html string

global

<template>
  <h1>Hello {{ msg }}</h1>
</template>

<script setup lang="ts">
import { ref } from 'vue';
const msg = ref<string>('world');
</script>

with toast option

js
toast('Hello world.\n I am <strong>jack</strong>', {
  dangerouslyHTMLString: true, // can override the global option
});

Released under the MIT License.