import type { CustomRefFactory } from 'vue'; import { customRef } from 'vue'; export function useCustomRef(factory: CustomRefFactory): T { return customRef(factory) as T; }