AlertBox 警告弹框
示例
状态
AlertBox
有三种状态,分别是 info
、success
和 error
,可以通过 status
属性指定不同的状态。
<template>
<article>
<veui-button
class="button"
@click="successOpen = true"
>
Success
</veui-button>
<veui-button
class="button"
@click="errorOpen = true"
>
Error
</veui-button>
<veui-button
class="button"
@click="infoOpen = true"
>
Info
</veui-button>
<veui-alert-box
status="success"
:open.sync="successOpen"
>
<template #title>
Success
</template>
<div>Saved successfully!</div>
</veui-alert-box>
<veui-alert-box
status="error"
:open.sync="errorOpen"
>
<template #title>
Error
</template>
<div>Not enough disk space!</div>
</veui-alert-box>
<veui-alert-box
status="info"
:open.sync="infoOpen"
>
<template #title>
Sytstem
</template>
<div>The total available storage is 5MB.</div>
</veui-alert-box>
</article>
</template>
<script>
import { AlertBox, Button } from 'veui'
export default {
components: {
'veui-alert-box': AlertBox,
'veui-button': Button
},
data () {
return {
successOpen: false,
errorOpen: false,
infoOpen: false
}
}
}
</script>
<style lang="less" scoped>
.button {
margin-right: 10px;
}
</style>
标题
可以通过 title
属性或 title
插槽自定义警告弹框的标题。
<template>
<article>
<veui-button
class="button"
@click="open1 = true"
>
title prop
</veui-button>
<veui-button
class="button"
@click="open2 = true"
>
title slot
</veui-button>
<veui-alert-box
status="success"
:open.sync="open1"
title="Success"
@ok="ok"
>
<p>Saved successfully!</p>
</veui-alert-box>
<veui-alert-box
status="success"
:open.sync="open2"
@ok="ok"
>
<template #title>
Success
<veui-icon name="info-circle"/>
</template>
<p>Saved successfully!</p>
</veui-alert-box>
</article>
</template>
<script>
import { AlertBox, Button, Icon, toast } from 'veui'
import 'veui-theme-dls-icons/info-circle'
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>
<style lang="less" scoped>
.button {
margin-right: 10px;
}
</style>
API
属性
名称 | 类型 | 默认值 | 描述 | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
open | boolean | false |
是否显示警告弹框。 | ||||||||
status | string | 'success' | 警告框状态。
| ||||||||
type | string | 'success' | 已废弃。请使用 status 属性代替。 | ||||||||
title | string | - | 标题。 | ||||||||
loading | boolean | false | 是否处于加载状态。处于加载状态时确定按钮也将进入加载状态,无法点击。 | ||||||||
disabled | boolean | false | 是否处于禁用状态。处于禁用状态时确定按钮也将进入禁用状态,无法点击。 | ||||||||
ok-label | string | - | “确定”按钮的文字内容。 | ||||||||
before-close | function(string): boolean=|Promise<boolean=> | - | 在将触发关闭的操作发生后执行,参考 Dialog 组件的 before-close 属性。 | ||||||||
overlay-class | string | Array | Object | - | 参考 Overlay 组件的 overlay-class 属性。 | ||||||||
overlay-style | string | Array | Object | - | 参考 Overlay 组件的 overlay-style 属性。 |
插槽
名称 | 描述 |
---|---|
default | 内容区。 |
title | 标题区。若同时指定了 title 属性和 title 插槽,以后者为准。 |
foot | 底部区域,默认会展示一个“知道了”按钮。 |
事件
名称 | 描述 |
---|---|
ok | 点击“知道了”按钮触发。 |
afteropen | 弹框打开后触发。弹框内容在打开后才会进行渲染,所以如果有依赖内容渲染的逻辑,请在此事件触发后再执行。 |
afterclose | 弹框关闭后触发。如果样式主题提供了退出动画,将在退出动画完毕后触发。 |
图标
名称 | 描述 |
---|---|
info | 普通信息。 |
success | 成功状态。 |
error | 错误状态。 |