UNPKG

@danielkalen/simplybind

Version:

Magically simple, framework-less one-way/two-way data binding for frontend/backend in ~5kb.

12 lines (11 loc) 276 B
<template> <form> <h4>Products</h4> <label repeat.for="product of products"> <input type="checkbox" value.bind="product" checked.bind="selectedProducts"> ${product} </label> <br /> Selected products: ${selectedProducts} </form> </template>