mirror of
https://github.com/jaandrle/deka-dom-el
synced 2025-04-03 04:25:53 +02:00
14 lines
416 B
JavaScript
14 lines
416 B
JavaScript
import { S } from "deka-dom-el/signals";
|
|
|
|
// Create base signals
|
|
const firstName = S("John");
|
|
const lastName = S("Doe");
|
|
|
|
// Create a derived signal
|
|
const fullName = S(() => firstName.get() + " " + lastName.get());
|
|
|
|
// The fullName signal updates automatically when either dependency changes
|
|
S.on(fullName, name => console.log("Name changed to:", name));
|
|
|
|
firstName.set("Jane"); // logs: "Name changed to: Jane Doe"
|