Alert

Preview

Props
Options
primary
Divider
Persistent
Code
  const notifier = useNotifier()

  notifier.alert({
    title: 'Are you sure?',
    text: 'Do you want to continue?',
    color: 'primary',
    onSubmit: () => {
      // Do something
    },      
  })

API

PropsTypeDescription
titlestring
textstring
colorstring
Options
All props from VDialog APIhttps://vuetifyjs.com/en/api/v-dialog/
Events
onSubmitany
onClose
Table of Contents