icon: '&#xe61e;'
tags:
  en:
    - popup
    - dialog
  zh-CN:
    - 弹窗
props:
  value:
    type: Boolean
    en: visibility of popup, use `v-model` for binding
    zh-CN: 是否关闭，使用`v-model`绑定
  height:
    type: String
    default: 'auto'
    en: popup height, works when position is top or bottom
    zh-CN: 高度，设置`100%`为整屏高度。当 position 为 top 或者 bottom 时有效。
  hide-on-blur:
    type: Boolean
    default: true
    en: if closing popup when mask being clicked
    zh-CN: 点击遮罩时是否自动关闭
events:
  on-hide:
    en: emits when then popup is closed
    zh-CN: 关闭时触发
  on-show:
    en: emits when the popup shows
    zh-CN: 显示时触发
  on-first-show:
    en: emits at the first time the popup shows
    zh-CN: 第一次显示时触发，可以在该事件回调里初始化数据或者界面
slots:
  default:
    en: content body
    zh-CN: 弹窗主体内容
