11 lines
203 B
JavaScript
11 lines
203 B
JavaScript
export default Ember.Component.extend({
|
|
tagName: "section",
|
|
classNames: ["styleguide-example"],
|
|
value: null,
|
|
|
|
init() {
|
|
this._super(...arguments);
|
|
this.value = this.initialValue;
|
|
},
|
|
});
|