UNPKG

simple-marko-ui

Version:

A simple library of UI components for MarkoJS.

11 lines (8 loc) 252 B
const Base = require("./base.mixin"); class Component { handleItemClick(item, index, event) { this.emit("itemclick", {item: item, index: index, event: event}) } }; Object.assign(Component.prototype, Base); module.exports = Component;