@danielkalen/simplybind
Version:
Magically simple, framework-less one-way/two-way data binding for frontend/backend in ~5kb.
13 lines (10 loc) • 363 B
HTML
<template>
<require from="./number-format.js"></require>
<label for="formatSelect">Select Format:</label>
<select id="formatSelect" ref="formatSelect">
<option value="$0,0.00">$0,0.00</option>
<option value="$0.0a">$0.0a</option>
<option value="0.00000">0.00000</option>
</select>
${netWorth | numberFormat:formatSelect.value}
</template>