Cloud Zhang
2024-05-16 8d6f97a29f9e98e1c190625868b41f93dc020945
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]>;
};