Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
14 Zeilen
218 B
Text
14 Zeilen
218 B
Text
|
import Component from "@ember/component";
|
||
|
|
||
|
export default Component.extend({
|
||
|
keyPress(e) {
|
||
|
e.stopPropagation();
|
||
|
},
|
||
|
|
||
|
actions: {
|
||
|
onChangeValue(value) {
|
||
|
this.set("field.value", value);
|
||
|
},
|
||
|
},
|
||
|
});
|