FormPreview

FormPreview

demo 原始链接demo 源码编辑文档组件源码

form-preview - 图1

二维码

form-preview - 图2

Install

安装

局部注册

全局注册

  1. import { FormPreview } from 'vux'
  2. export default {
  3. components: {
  4. FormPreview
  5. }
  6. }

  1. // 在入口文件全局引入
  2. import Vue from 'vue'
  3. import { FormPreview } from 'vux'
  4. Vue.component('form-preview', FormPreview)

API

属性

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

Issues

相关 issue

贡献者

贡献者

该组件(包含文档)迭代次数 12,贡献人数 2
airylandQiongrong Jiang

Changelog

发布日志

  • v2.5.12 [fix] 修复 header-value 为空时的错位问题 #1935
  • v2.1.1-rc.14 [fix] 修复 less 变量:form-preview-button-primary-color
  • v2.1.1-rc.14 [feature] 支持 prop:name 以方便函数调用 #1123
  • v2.1.0-rc.49 [fix] 修复出现滚动条 #920 @asingingfish
  • v2.0.0 [feature] 增加form-preview组件