LastLeaf
LastLeaf
`:host` in component stylesheets should be translated into `[is="COMPONENT_PATH"]` .
It seems like there is a better way to manage `ChildNodes` in `glassEasel.Element` , especially in dynamic slotting.
For example, if a data path is nullable, `replaceDataOnPath` will fail on processing types. ```js data: { info: { field?: { value: string } } } replaceDataOnPath(['info', 'field', 'value'], 'xxx')...
Currently, when a property value is unspecified (e.g. `` ) in WXML, it will be treated as `{{true}}` (e.g. `` ). This behavior works on most pratical cases, since this...