UNPKG

cxs-ui

Version:

Vue 动态表格组件和动态表单组件

57 lines 921 B
export default { width: { type: String, default: '600' }, labelWidth: { type: String, default: '80' }, /** * 对话框标题 */ title: { type: String, default: "" }, /** * 显示/隐藏对话框 * */ show: { type: Boolean, default: false }, /** * 表单属性 */ formAttr: { type: Array, default: () => [] }, column: { type: String, default: "1", }, /** * 表单默认值 */ data: { type: Object, default: () => {return {};} }, /** * inline */ inline: { type: Boolean, default: false }, /** * 是否显示标签 */ showLabel: { type: Boolean, default: true } }