Files

6 lines
137 B
Vue
Raw Permalink Normal View History

2026-04-03 09:56:14 +08:00
import type { ComputedRef, Ref } from 'vue';
export type DynamicProps<T> = {
[P in keyof T]: Ref<T[P]> | T[P] | ComputedRef<T[P]>;
};