-
Notifications
You must be signed in to change notification settings - Fork 5
Basic Example
Mike Byrne edited this page Dec 24, 2021
·
1 revision
<button data-behavior="showAlert">Click me</button>
With a corresponding behavior:
import { createBehavior } from '@area17/a17-behaviors';
const showAlert = createBehavior('showAlert',
{
alert(val) {
window.alert('Hello world!');
}
},
{
init() {
this.$node.addEventListener('click', this.alert);
},
destroy() {
this.$node.removeEventListener('click', this.alert);
}
}
);
export default showAlert;
This would show an alert on click of the button. Note that this.$node
is the DOM node with the data-behavior
attribute.