Ben Lin
2024-05-01 f4b7cfb7f1477d2860d08a69ef48728412c00fd2
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]>;
};