fix(description): not rendering while show method return false (#253)

* fix(description): not rendering while show method return false

fix #252

* Move data desctruction outside loop
This commit is contained in:
John Niang 2021-02-07 17:56:58 +08:00 committed by GitHub
parent c81d48e734
commit 23eba27456
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,10 +83,9 @@ export default defineComponent({
}
function renderItem() {
const { schema } = unref(getProps);
const { schema, data } = unref(getProps);
return unref(schema).map((item) => {
const { render, field, span, show, contentMinWidth } = item;
const { data } = unref(getProps) as DescOptions;
if (show && isFunction(show) && !show(data)) {
return null;
@ -112,7 +111,8 @@ export default defineComponent({
}}
</Descriptions.Item>
);
});
})
.filter((item) => !!item);
}
const renderDesc = () => {