Files
oa/documentation/plugins/notyf/notyf-success-documentation.md
2025-05-24 01:49:48 +09:00

591 B

Success 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 successToast = () => {
  notyf.primary('Your changes have been successfully saved!')
}
</script>

<template>
  <VButton bold @click="successToast">
    Success Toast
  </VButton>
</template>