Class Signal<T>

A Signal is an object that holds a value. Changes to that value can trigger side-effects.

The initial value of the reference.

An optional object with reactive options.

A ValueRef instance.

const value = valueRef(1);
value.watch((value) => console.log(value));
value.value = 2; // logs 2

Type Parameters

  • T

Implements

Constructors

Properties

Accessors

Methods

Constructors

Properties

__isRef: true = ...

Accessors

Methods

  • Triggers the observers.

    Returns void

  • Adds an observer to the reactive value.

    Parameters

    • effect: AnyFunction

      The observer function.

    Returns void