zhang
2023-10-26 4755017bcc2dc0aee2f98b46d929a060a5b1bb62
提交 | 用户 | age
a305e5 1 import type { ComputedRef, Ref } from 'vue';
V 2
3 export type DynamicProps<T> = {
4   [P in keyof T]: Ref<T[P]> | T[P] | ComputedRef<T[P]>;
5 };