mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 23:15:16 +08:00
10 lines
191 B
JavaScript
10 lines
191 B
JavaScript
import Component from "@ember/component";
|
|
import { action } from "@ember/object";
|
|
|
|
export default Component.extend({
|
|
@action
|
|
changed(value) {
|
|
this.set("field.value", value);
|
|
},
|
|
});
|