const {ccclass, property} = cc._decorator; @ccclass export class LabelOtherSetting extends cc.Component { @property public bold:boolean = false; @property public underline:boolean = false; onEnable(){ (this.getComponent(cc.Label))._enableBold(this.bold); (this.getComponent(cc.Label))._enableUnderline(this.underline); } }