UNPKG

@danielkalen/simplybind

Version:

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

12 lines (9 loc) 226 B
export class App { products = [ { id: 0, name: 'Motherboard' }, { id: 1, name: 'CPU' }, { id: 2, name: 'Memory' }, ]; productMatcher = (a, b) => a.id === b.id; selectedProduct = { id: 1, name: 'CPU' }; }