尝试一下
w-label(for="input") Label:
w-text#input(style="width: 100px")
import { WidgetLabel } from 'abm-ui';
import { $ } from 'abm-utils';
const label = $<WidgetLabel>('w-label')!;
window.register({
attrs: [
{
id: 'for',
type: 'string',
value: label.for ?? '',
action(v) {
label.for = v;
},
},
],
});
接口
WIP...