YangYuGang
2025-03-07 406543f8e30d0fb8f2905add5377d043a9c87113
1
2
3
4
5
import type { ComputedRef, Ref } from 'vue';
 
export type DynamicProps<T> = {
  [P in keyof T]: Ref<T[P]> | T[P] | ComputedRef<T[P]>;
};