VEUI

VEUI on GitHub
Play!EnglishEN

ConfirmBox 确认弹框

示例

自定义标题和内容区。

在 GitHub 上编辑此示例编辑
<template>
<article>
  <veui-button @click="open = true">
    Remove
  </veui-button>
  <veui-confirm-box
    title="System Notification"
    :open.sync="open"
    @ok="ok"
    @cancel="cancel"
  >
    <p>Are you sure to remove the item?</p>
  </veui-confirm-box>
</article>
</template>

<script>
import { ConfirmBox, Button, toast } from 'veui'

export default {
  components: {
    'veui-confirm-box': ConfirmBox,
    'veui-button': Button
  },
  data () {
    return {
      open: false
    }
  },
  methods: {
    ok () {
      this.open = false
      toast.info('Confirmed')
    },
    cancel () {
      toast.info('Canceled')
    }
  }
}
</script>

API

属性

名称类型默认值描述
openbooleanfalse

.sync

是否显示确认弹框。

titlestring-标题。
loadingbooleanfalse是否处于加载状态。处于加载状态时确定按钮也将进入加载状态,无法点击。
disabledbooleanfalse是否处于禁用状态。处于禁用状态时确定按钮也将进入禁用状态,无法点击。
ok-labelstring-“确定”按钮的文字内容。
cancel-labelstring-“取消”按钮的文字内容。
before-closefunction(string): boolean=|Promise<boolean=>-在将触发关闭的操作发生后执行,参考 Dialog 组件的 before-close 属性。
overlay-classstring | Array | Object-参考 Overlay 组件的 overlay-class 属性。
overlay-stylestring | Array | Object-参考 Overlay 组件的 overlay-style 属性。

插槽

名称描述
default内容区。
title标题区。若同时指定了 title 属性和 title 插槽,以后者为准。
foot底部区域,默认会展示“确定”、“取消”按钮。

事件

名称描述
ok点击“确定”按钮时触发。
cancel点击“取消”按钮时触发。
afteropen弹框打开后触发。弹框内容在打开后才会进行渲染,所以如果有依赖内容渲染的逻辑,请在此事件触发后再执行。
afterclose弹框关闭后触发。如果样式主题提供了退出动画,将在退出动画完毕后触发。
在 GitHub 上编辑此页面编辑
© Baidu, Inc. 2024