This commit is contained in:
神仙都没用 2024-12-30 17:31:15 +08:00
parent e931fd7ec6
commit 81c2e67b77

View File

@ -1,10 +1,10 @@
export const CrudProps = {
prop: String, // Key
column: Object, // 列数据
row: Object, // 行数据
index: Number, // 行索引
scope: Object, // 表单作用域
disabled: Boolean, // 是否禁用
isEdit: Boolean, // 是否编辑
isDisabled: Boolean // 是否禁用
column: null, // 列数据
row: null, // 行数据
index: null, // 行索引
scope: null, // 表单作用域
disabled: null, // 是否禁用
isEdit: null, // 是否编辑
isDisabled: null // 是否禁用
};