# Toast
Component name: <v-toast>
Function name: toast()
# Examples
# Basic
# Form
# Component example
TIP
Using v-toast
as a component is useful when content contains HTML - for example links.
# API
# Component
Name | Type | Description | Default |
---|---|---|---|
success | Boolean | Show 'success' toast | false |
info | Boolean | Show 'info' toast | true |
error | Boolean | Show 'error' toast | false |
dismissible | Boolean | Whether or not a click can dismiss the toast | true |
# Function
toast(type, message, dismissible = true)
type
- Either 'success', 'info' or 'error'message
- The message showndismissible
- Whether or not a click can dismiss the toast