Skip to content

Instantly share code, notes, and snippets.

@kawasako
Created June 18, 2016 19:02
Show Gist options
  • Save kawasako/ef177cd70f9650c3b24bf8d927ee4310 to your computer and use it in GitHub Desktop.
Save kawasako/ef177cd70f9650c3b24bf8d927ee4310 to your computer and use it in GitHub Desktop.
export default class HogeWidget {
constructor(el) {
this.el = el;
}
bind() {
this.el.addEventListener('click', () => { ... });
}
init() {
this.bind();
}
}
/*
<div data-widget="hoge">clickable!</hoge>
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment