Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. import Ember from 'ember';
  2.  
  3. export default Ember.Component.extend({
  4. actions: {
  5. myComponentAction() {
  6. this.sendAction('myControllerAction');
  7. this.get('myControllerAction')();
  8. }
  9. }
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement