mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-04 17:27:09 +00:00
fix(rax-render): hidden无效
This commit is contained in:
parent
8647ade39d
commit
08a3e36a67
@ -241,6 +241,10 @@ export default class BaseEngine extends Component {
|
|||||||
if (!isSchema(schema)) return null;
|
if (!isSchema(schema)) return null;
|
||||||
let Comp = components[schema.componentName] || engine.getNotFoundComponent();
|
let Comp = components[schema.componentName] || engine.getNotFoundComponent();
|
||||||
|
|
||||||
|
if (schema.hidden) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
if (schema.loop !== undefined) {
|
if (schema.loop !== undefined) {
|
||||||
return this.__createLoopVirtualDom(
|
return this.__createLoopVirtualDom(
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user