X Tutup
Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 530 Bytes

File metadata and controls

38 lines (28 loc) · 530 Bytes
title SimulatorRender
sidebar_position 6

@types IPublicModelSimulatorRender
@since v1.0.0

基本介绍

画布节点选中模型

属性

components

画布组件列表

/**
  * 画布组件列表
  */
components: {
  [key: string]: any;
}

方法

rerender

触发画布重新渲染

/**
 * 触发画布重新渲染
 */
rerender: () => void;
X Tutup