Skip to content

Instantly share code, notes, and snippets.

View abhilashlr's full-sized avatar
😀

abhilashlr abhilashlr

😀
View GitHub Profile
@abhilashlr
abhilashlr / components.foo-bar.js
Last active September 28, 2022 10:53
Passing data from a component to its controller/route:
import Ember from 'ember';
export default Ember.Component.extend({
actions: {
sendDataToController() {
this.sendAction('sendData', 1);
}
}
});