Vben
2021-04-10 967b28c4c06cf92e9ab90cff51f59a0d6ced5d7b
提交 | 用户 | 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 };