Guest User

Untitled

a guest
Dec 13th, 2018
102
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. let uuid = 0;
  4.  
  5. export default Ember.Component.extend({
  6. init() {
  7. this._super(...arguments);
  8. this.count = 0;
  9. },
  10.  
  11. click() {
  12. this.set('count', ++uuid);
  13. }
  14. });
Add Comment
Please, Sign In to add comment