Guest User

Untitled

a guest
Mar 19th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. import Ember from 'ember';
  2.  
  3. export default Ember.Component.extend({
  4. actions: {
  5. sendData(data) {
  6. console.log('Data in child-nested component called: ' + data);
  7. this.sendAction('sendData', data);
  8. }
  9. }
  10. });
Add Comment
Please, Sign In to add comment