mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 15:08:56 +08:00
9 lines
164 B
JavaScript
9 lines
164 B
JavaScript
import Component from "@ember/component";
|
|
export default Component.extend({
|
|
actions: {
|
|
changed(value) {
|
|
this.set("field.value", value);
|
|
},
|
|
},
|
|
});
|