Computed Properties
Sprig's computed(fn) returns a read-only getter derived from the signals read by fn:
js
import { computed, signal } from 'sprig-framework';
const [count, setCount] = signal(2);
const doubled = computed(() => count() * 2);
setCount(3);
console.log(doubled()); // 6Read the computed getter inside an effect, a function-valued DOM property, or a template expression to subscribe to its value. A computed value is currently effect-backed and has no separate public disposal handle; see Reactivity Fundamentals.