UNPKG

@anywhichway/lazui

Version:

Single page apps and lazy loading sites with minimal JavaScript or client build processes.

18 lines (15 loc) 299 B
const imports= { greeting: '[data-lz\\:export="greeting"]', name: 'input[name="name"]', }; function greet() { this.greeting.textContent = `Hello, ${this.name.value}!`; } function onclick(event) { console.log(event) } export { imports, greet, onclick }