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-label | string | 头部标题 | -- | |
header-value | string | 头部内容 | -- | |
body-items | array | [] | 主体内容列表, [{label:'label',value:'value'}] | -- |
footer-buttons | array | [] | 底部按钮列表,default 为灰色样式,primary 文字为高亮颜色, [{style: "primary", text: "text", onButtonClick: fn(prop:name), link: "/path"}] | -- |