ui/app/components/advanced-section/component.js

14 lines
201 B
JavaScript

import Ember from 'ember';
export default Ember.Component.extend({
advanced: false,
tagName: null,
actions: {
toggle() {
this.set('advanced', !this.get('advanced'));
},
},
});