hitChildren 
进一步定义元素子级的可交互性。
关键属性 
hitChildren: boolean 
子元素是否响应交互事件,默认为 true。
归属 
UI 元素 
停用子元素交互事件 
ts
// #停用子元素交互事件
import { Leafer, Group, Rect, Ellipse } from 'leafer-ui'
const leafer = new Leafer({ view: window })
const group = new Group({
    draggable: true,
    children: [
        new Rect({
            width: 100,
            height: 100,
            fill: '#32cd79',
            draggable: true
        }),
        new Ellipse({
            x: 50,
            y: 50,
            width: 100,
            height: 100,
            innerRadius: 0.5,
            fill: "#FEB027",
            draggable: true
        })
    ]
})
leafer.add(group)
setTimeout(() => {
    // 停用子元素交互事件,子元素将不能被单独拖拽
    group.hitChildren = false
}, 1000)