Vben
2021-06-19 7dce50cb1f70da050bef689deac29de397005f8b
提交 | 用户 | 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 };