简体中文
Appearance
运行时创建的临时名称(innerId + tag),用于快速识别元素。
string
运行时创建的临时名称,用于快速识别元素。
// #显示矩形元素的 innerName import { Leafer, Rect, Text } from 'leafer-ui' const leafer = new Leafer({ view: window }) const rect = Rect.one({ fill: '#32cd79' }, 0, 30) leafer.add(rect) leafer.add(new Text({ text: rect.innerName, fill: '#32cd79' }))