@yesstudio/nuxt-composables
    Preparing search index...

    Interface BaseComputedRef<T, S>

    interface BaseComputedRef<T, S = T> {
        "[ComputedRefSymbol]": true;
        "[RefSymbol]": true;
        effect: ComputedRefImpl;
        get value(): T;
        set value(_: S): void;
    }

    Type Parameters

    • T
    • S = T

    Hierarchy (View Summary)

    Index

    Properties

    "[ComputedRefSymbol]": true
    "[RefSymbol]": true

    Type differentiator only. We need this to be in public d.ts but don't want it to show up in IDE autocomplete, so we use a private Symbol instead.

    effect: ComputedRefImpl

    computed no longer uses effect

    Accessors

    • get value(): T

      Returns T

    • set value(_: S): void

      Parameters

      Returns void