Toast 消息提示
示例
状态
Toast
有四种状态,分别是 info
、success
、warning
和 error
,可以通过 status
属性指定不同的状态。
<template>
<article>
<section>
<veui-toast
class="toast"
status="info"
open
message="Press any key to continue..."
/>
</section>
<section>
<veui-toast
class="toast"
status="success"
open
message="Your profile has been updated."
/>
</section>
<section>
<veui-toast
class="toast"
status="warning"
open
>
v1 is deprecated. Use v2 instead.
</veui-toast>
</section>
<section>
<veui-toast
class="toast"
status="error"
open
message="Uncaught SyntaxError: Unexpected token +"
/>
</section>
</article>
</template>
<script>
import { Toast } from 'veui'
export default {
components: {
'veui-toast': Toast
}
}
</script>
<style lang="less" scoped>
.toast {
position: relative;
}
section {
margin-bottom: 20px;
}
</style>
命令式调用
可使用 veui/plugins/toast
模块加载 toast
插件进行命令式调用。
<template>
<article>
<veui-button
class="button"
@click="$toast.info({
message: 'Press any key to continue...',
duration: 5000
})"
>
Info
</veui-button>
<veui-button
class="button"
@click="$toast.success('Your profile has been updated.')"
>
Success
</veui-button>
<veui-button
class="button"
@click="$toast.warn('v1 is deprecated. Use v2 instead.')"
>
Warn
</veui-button>
<veui-button
class="button"
@click="$toast.error('Uncaught SyntaxError: Unexpected token +')"
>
Error
</veui-button>
</article>
</template>
<script>
import Vue from 'vue'
import { Button } from 'veui'
import toast from 'veui/plugins/toast'
Vue.use(toast)
export default {
components: {
'veui-button': Button
}
}
</script>
<style lang="less" scoped>
.button {
margin-right: 20px;
}
</style>
API
属性
名称 | 类型 | 默认值 | 描述 | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
open | boolean | false |
是否显示消息提示。 | ||||||||||
status | string | 'success' | 警告框类型。
| ||||||||||
type | string | 'success' | 已废弃。请使用 status 属性代替。 | ||||||||||
title | string | - | 消息标题。 | ||||||||||
message | string | - | 消息内容。 | ||||||||||
duration | number | toast.duration | 消息展示时间毫秒数,超过此事件则消息提示自动关闭。 | ||||||||||
closable | boolean | - | 是否有关闭按钮。 |
插槽
名称 | 描述 |
---|---|
default | 内容区。默认显示 message 属性的内容。 |
title | 标题区。默认显示 title 属性的内容。 |
事件
名称 | 描述 |
---|---|
close | 消息自动关闭后触发。 |
ready | 组件挂载之后会触发该事件。 |
全局配置
配置项 | 类型 | 默认值 | 描述 |
---|---|---|---|
toast.duration | number | 3000 | 消息默认展示时间毫秒数。 |
图标
名称 | 描述 |
---|---|
info | 普通信息。 |
success | 成功状态。 |
warning | 警告状态。 |
error | 错误状态。 |