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

FormPreview 组件使用教程

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

安装

import { FormPreview } from 'vux'

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

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

Vue.component('form-preview', FormPreview)

属性

名字类型默认值说明版本要求
header-labelstring头部标题--
header-valuestring头部内容--
body-itemsarray[]主体内容列表, [{label:'label',value:'value'}]--
footer-buttonsarray[]底部按钮列表,default 为灰色样式,primary 文字为高亮颜色, [{style: "primary", text: "text", onButtonClick: fn(prop:name), link: "/path"}]--