I tried to set a model data into an ember component data. But it didn't work.
actions: {
setValue(modelData, type) {
// this doesn't work
this.set('currentType', type);
this.set('currentData', modelData);
// this also doesn't work
this.setProperties({
currentType: type,
currentData: modelData
});
}
}
And got this error
Aucun commentaire:
Enregistrer un commentaire