EmberJS – Customizing the Element’s Class
Customize the element's class at the invocation time, i.e., at the time of calling the class name. Syntax import Ember from 'ember'; export default Ember.Component.extend ({ classNames: ['name_of_class'] }); Example…