UNPKG

wetrade-design

Version:

一款多语言支持Vue3的UI框架

4 lines (3 loc) 184 B
import type { ComputedRef } from 'vue'; export declare type ComputedGetter<T> = (...args: any[]) => T; export default function eagerComputed<T>(fn: ComputedGetter<T>): ComputedRef<T>;