Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // Import the EventBus.
  2. import { EventBus } from './event-bus.js';
  3.  
  4. // Listen for the i-got-clicked event and its payload.
  5. EventBus.$on('i-got-clicked', clickCount => {
  6. console.log(`Oh, that's nice. It's gotten ${clickCount} clicks! :)`)
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement