## Event Listeners Event listeners can be added to any HTML element using the `l-on:[eventType]` directive, e.g. `
`. You can choose to keep the listeners private to the component or expose them as properties. To keep them private, use variables of type "function". To expose them, just define them on `this` or `self`. *Caution*: If you define public listeners, make sure their names do not collide with standard HTML element property names, e.g. `getComputedStyle`.