AlertBox 警告弹框
示例
类型
AlertBox
有三种类型,分别是 info
、success
和 error
,可以通过 type
属性指定不同的类型。
<template>
<article>
<veui-button @click="successOpen = true">
Success
</veui-button>
<veui-button @click="errorOpen = true">
Error
</veui-button>
<veui-button @click="infoOpen = true">
Info
</veui-button>
<veui-alert-box
type="success"
:open.sync="successOpen"
>
<template slot="title">
Success
</template>
<div>Saved successfully!</div>
</veui-alert-box>
<veui-alert-box
type="error"
:open.sync="errorOpen"
>
<template slot="title"></template>
<div>Not enough disk space!</div>
</veui-alert-box>
<veui-alert-box
type="info"
:open.sync="infoOpen"
>
<template slot="title"></template>
<div>The total available storage is 5MB.</div>
</veui-alert-box>
</article>
</template>
<script>
import AlertBox from 'veui/components/AlertBox'
import Button from 'veui/components/Button'
export default {
components: {
'veui-alert-box': AlertBox,
'veui-button': Button
},
data () {
return {
successOpen: false,
errorOpen: false,
infoOpen: false
}
}
}
</script>
标题
可以通过 title
属性或 title
插槽自定义警告弹框的标题。
<template>
<article>
<veui-button @click="open1 = true">
<code>title</code> prop
</veui-button>
<veui-button @click="open2 = true">
<code>title</code> slot
</veui-button>
<veui-alert-box
ui="success"
:open.sync="open1"
title="Success"
@ok="ok"
>
<p>Saved successfully!</p>
</veui-alert-box>
<veui-alert-box
ui="success"
:open.sync="open2"
@ok="ok"
>
<template slot="title">
Success <veui-icon
name="info-circle"
class="icon"
/>
</template>
<p>Saved successfully!</p>
</veui-alert-box>
</article>
</template>
<script>
import AlertBox from 'veui/components/AlertBox'
import Button from 'veui/components/Button'
import Icon from 'veui/components/Icon'
import 'veui-theme-one-icons/info-circle'
import toast from 'veui/managers/toast'
export default {
components: {
'veui-alert-box': AlertBox,
'veui-button': Button,
'veui-icon': Icon
},
data () {
return {
open1: false,
open2: false
}
},
methods: {
ok () {
toast.info('Confirmed')
}
}
}
</script>
API
属性
名称 | 类型 | 默认值 | 描述 | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
open | boolean | false |
是否显示警告弹框。 | ||||||||
type | string | 'success' | 警告框类型。
| ||||||||
title | string | - | 标题。 | ||||||||
overlay-class | string|Array|Object | - | 参考 Overlay 组件的 overlay-class 属性。 |
插槽
名称 | 描述 |
---|---|
default | 内容区。 |
title | 标题区。若同时指定了 title 属性和 title 插槽,以后者为准。 |
foot | 底部区域,默认会展示一个“知道了”按钮。 |
事件
名称 | 描述 |
---|---|
ok | 点击“知道了”按钮触发。 |
afterclose | 浮层关闭后触发。如果样式主题提供了退出动画,将在退出动画完毕后触发。 |
图标
名称 | 描述 |
---|---|
info | 普通信息。 |
success | 成功状态。 |
error | 错误状态。 |