UNPKG

@danielkalen/simplybind

Version:

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

12 lines (11 loc) 307 B
<template> <form> <h4>Products</h4> <label repeat.for="product of products"> <input type="checkbox" model.bind="product.id" checked.bind="selectedProductIds"> ${product.id} - ${product.name} </label> <br /> Selected product IDs: ${selectedProductIds} </form> </template>