当前位置: 首页 > 文档资料 > VUX 中文文档 >

PopupHeader 组件使用教程

优质
小牛编辑
135浏览
2023-12-01

安装

import { PopupHeader } from 'vux'

export default {
  components: {
    PopupHeader
  }
}
// 在入口文件全局引入

import Vue from 'vue'
import { PopupHeader } from 'vux'

Vue.component('popup-header', PopupHeader)

属性

名字类型默认值说明版本要求
left-textstring左侧文字v2.5.2
right-textstring右侧文字v2.5.2
titlestring标题v2.5.2
show-bottom-borderstring是否显示底部边框v2.5.2

事件

名字参数说明版本要求
@on-click-left--左侧文字点击时触发v2.5.2
@on-click-right--右侧文字点击时触发v2.5.2