mirror of
https://github.com/jaandrle/deka-dom-el
synced 2025-04-03 04:25:53 +02:00
16 lines
430 B
JavaScript
16 lines
430 B
JavaScript
// Debugging a (derived) signal with `console.log`
|
||
import { S } from "deka-dom-el/signals";
|
||
const name= S("Alice");
|
||
const greeting = S(() => {
|
||
// log derived signals
|
||
const log = "Hello, " + name.get();
|
||
console.log(log);
|
||
console.log(name.valueOf());
|
||
return log;
|
||
});
|
||
|
||
// log signals in general
|
||
S.on(greeting, value => console.log("Greeting changed to:", value));
|
||
|
||
name.set("Bob"); // Should trigger computation and listener`)
|