无木
2021-06-04 41854121f3713dbde236afd3a416e9f27bd0c673
提交 | 用户 | 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 };