UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

7 lines 161 B
import { unref } from 'vue'; /** * Get the value of value/ref/getter. */ export function resolveUnref(r) { return typeof r === 'function' ? r() : unref(r); }