mirror of
https://github.com/Leo501/CocosCreatorTutorial.git
synced 2026-05-08 06:38:37 +08:00
14 lines
214 B
JavaScript
14 lines
214 B
JavaScript
cc.Class({
|
|
extends: cc.Component,
|
|
properties: {
|
|
label: {
|
|
default: null,
|
|
type: cc.Label
|
|
}
|
|
},
|
|
|
|
setData(data) {
|
|
this.label.string = `${data}`;
|
|
}
|
|
});
|