1
Cloud Zhang
2024-05-23 f59b0420002bbe6d10e754d1167c7c6cd1b5059c
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]>;
};