mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 04:22:25 +09:00
570 B
570 B
Error toast
Vuero is integrated with Notyf, a dead simple vanilla javascript
toasting library. You can check the plugin documentation on
Github.
The success toast is one the 2 notyf default toasts.
<script setup lang="ts">
import { Notyf } from 'notyf'
const notyf = new Notyf()
const errorToast = () => {
notyf.error('Looks like something went wrong')
}
</script>
<template>
<VButton bold @click="errorToast">
Error Toast
</VButton>
</template>