Toast

Preview

Props
Options
top right
5
5s
400
Sequential Closing
Code
  const notifier = useNotifier()

  notifier.toast({      
    text: 'Do you want to continue?',
    type: 'success'
    onClick: () => {
      // Do something
    },
    onClose: () => {
      // Do something
    },
  })

API

PropsTypeDescription
titlestring
textstring
colorstring
iconstring
typestring
Options
All props from VAlert APIhttps://vuetifyjs.com/en/api/v-alert/
Table of Contents