Cloud Zhang
2024-05-20 2cd26d312f47a79fb9b8b444a3f1760f98d03e38
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]>;
};