UNPKG

@danielkalen/simplybind

Version:

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

9 lines (7 loc) 152 B
export class App { selectedProducts = [ { id: 1, name: 'CPU' }, { id: 2, name: 'Memory' } ]; productMatcher = (a, b) => a.id === b.id; }