2020-08-13 11:47:56 +08:00
|
|
|
# Toast <small>消息提示</small>
|
|
|
|
|
|
|
|
## 示例
|
|
|
|
|
|
|
|
### 类型
|
|
|
|
|
2021-10-20 01:11:27 +08:00
|
|
|
`Toast` 有四种类型,分别是 `info`、`success`、`warning` 和 `error`,可以通过 [`type`](#props-type) 属性指定不同的类型。
|
2020-08-13 11:47:56 +08:00
|
|
|
|
|
|
|
[[ demo src="/demo/toast/default.vue" ]]
|
|
|
|
|
|
|
|
### 命令式调用
|
|
|
|
|
|
|
|
可使用 `veui/plugins/toast` 模块加载 [`toast` 插件](../plugins/toast)进行命令式调用。
|
|
|
|
|
|
|
|
[[ demo src="/demo/toast/plugin.vue" ]]
|
|
|
|
|
|
|
|
## API
|
|
|
|
|
|
|
|
### 属性
|
|
|
|
|
|
|
|
| 名称 | 类型 | 默认值 | 描述 |
|
|
|
|
| -- | -- | -- | -- |
|
2021-10-20 01:11:27 +08:00
|
|
|
| ``open`` | `boolean` | `false` | [^open] |
|
|
|
|
| ``type`` | `string` | `'success'` | [^type] |
|
|
|
|
| ``message`` | `string` | - | 消息内容。 |
|
|
|
|
| ``duration`` | `number` | `toast.duration` | 消息展示时间毫秒数,超过此事件则消息提示自动关闭。 |
|
2020-08-13 11:47:56 +08:00
|
|
|
|
|
|
|
^^^open
|
|
|
|
:::badges
|
|
|
|
`.sync`
|
|
|
|
:::
|
|
|
|
|
|
|
|
是否显示消息提示。
|
|
|
|
^^^
|
|
|
|
|
|
|
|
^^^type
|
|
|
|
警告框类型。
|
|
|
|
|
|
|
|
+++枚举值
|
|
|
|
| 值 | 描述 |
|
|
|
|
| -- | -- |
|
|
|
|
| `info` | 信息提示样式。 |
|
|
|
|
| `success` | 成功样式。 |
|
|
|
|
| `warning` | 警告样式。 |
|
|
|
|
| `error` | 错误样式。 |
|
|
|
|
+++
|
|
|
|
^^^
|
|
|
|
|
|
|
|
### 插槽
|
|
|
|
|
|
|
|
| 名称 | 描述 |
|
|
|
|
| -- | -- |
|
2021-10-20 01:11:27 +08:00
|
|
|
| ``default`` | 内容区。默认显示 [`message`](#props-message) 属性的内容。 |
|
2020-08-13 11:47:56 +08:00
|
|
|
|
|
|
|
### 事件
|
|
|
|
|
|
|
|
| 名称 | 描述 |
|
|
|
|
| -- | -- |
|
2021-10-20 01:11:27 +08:00
|
|
|
| ``close`` | 消息自动关闭后触发。 |
|
2020-08-13 11:47:56 +08:00
|
|
|
|
|
|
|
### 全局配置
|
|
|
|
|
|
|
|
| 配置项 | 类型 | 默认值 | 描述 |
|
|
|
|
| -- | -- | -- | -- |
|
2021-10-20 01:11:27 +08:00
|
|
|
| ``toast.duration`` | `number` | `3000` | 消息默认展示时间毫秒数。 |
|
2020-08-13 11:47:56 +08:00
|
|
|
|
|
|
|
### 图标
|
|
|
|
|
|
|
|
| 名称 | 描述 |
|
|
|
|
| -- | -- |
|
2021-10-20 01:11:27 +08:00
|
|
|
| ``info`` | 普通信息。 |
|
|
|
|
| ``success`` | 成功状态。 |
|
|
|
|
| ``warning`` | 警告状态。 |
|
|
|
|
| ``error`` | 错误状态。 |
|