@feng3d/reactivity
    Preparing search index...

    Interface Computed<T>

    计算属性接口。

    定义了计算属性的基本结构:

    1. value: 计算属性的当前值
    2. ComputedSymbol: 用于标识这是一个计算属性
    interface Computed<T = any> {
        "[ComputedSymbol]": true;
        value: T;
    }

    Type Parameters

    • T = any

    Hierarchy (View Summary)

    Index

    Properties

    "[ComputedSymbol]": true
    value: T