huangyinfeng
2024-09-13 12f7304fe9e2bb56ec328e4429a654a0653928a9
提交 | 用户 | 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 };