Skip to content

Instantly share code, notes, and snippets.

import Ember from 'ember';
export default Ember.Component.extend({
actions:{
save(){
console.log('save in component');
this.sendAction('save');
this.sendAction('savemore');
}
}