import type { ComputedRef, Ref } from 'vue'; export type DynamicProps = { [P in keyof T]: Ref | T[P] | ComputedRef; };