18 lines
307 B
JavaScript
Raw Normal View History

2017-03-24 21:30:28 -07:00
import Ember from 'ember';
const {
Component
} = Ember;
export default Component.extend({
classNames: ['nacho-login-form'],
actions: {
/**
* Handle the login for submission
*/
userDidSubmit() {
// Trigger action on parent controller
this.get('onSubmit')();
}
}
})