mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 04:58:16 +08:00
fdf76b9fb9
* fix: use fromPairs replace Object.fromEntries * fix: use lodash-es replace lodash
16 lines
427 B
TypeScript
16 lines
427 B
TypeScript
import type { UnwrapRef } from 'vue';
|
|
import { reactive, toRef } from 'vue';
|
|
import fromPairs from 'lodash-es/fromPairs';
|
|
|
|
/**
|
|
* Reactively pick fields from a reactive object
|
|
*
|
|
* @see https://vueuse.js.org/reactivePick
|
|
*/
|
|
export function reactivePick<T extends object, K extends keyof T>(
|
|
obj: T,
|
|
...keys: K[]
|
|
): { [S in K]: UnwrapRef<T[S]> } {
|
|
return reactive(fromPairs(keys.map(k => [k, toRef(obj, k)]))) as any;
|
|
}
|