UNPKG

@danielkalen/simplybind

Version:

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

14 lines (13 loc) 324 B
<template> <label> Select product:<br/> <select value.bind="selectedProduct"> <option value="">Choose...</option> <option repeat.for="product of products" value.bind="product"> ${product} </option> </select> </label> Selected product: ${selectedProduct} </template>