Ben Lin
2024-10-22 969725647117eb7ca148b2e8cfa9ec8b5eb432fa
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]>;
};