cc.Class({ extends: cc.Component, properties: { titleLabel: { default: null, type: cc.Label }, title: '' }, // LIFE-CYCLE CALLBACKS: onLoad () { this.titleLabel.string = this.title; }, start () { }, // update (dt) {}, });