PhloTour
EN NL
11 / 30

Reactive store

Bind inputs and elements to a shared store, no manual DOM code.

Read the docs →
.phlo
// bind any element to a shared store with one attribute, no JavaScript
<input data-bind="user.name">
<h2>Hi <b data-bind="user.name"></b></h2>

// typing in the input updates every element bound to user.name
		
Live preview
Hi

One input drives every element bound to the same key. Zero JavaScript, the store keeps them in sync.