mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
8 lines
209 B
Vue
8 lines
209 B
Vue
<script setup lang="ts">
|
|
const toast = useToast()
|
|
</script>
|
|
|
|
<template>
|
|
<UButton label="Show toast" @click="toast.add({ title: 'This is an <u>underlined</u> and <b>bold</b> notification.' })" />
|
|
</template>
|