mirror of
https://github.com/jeecgboot/jeecg-boot.git
synced 2025-09-02 10:25:56 +00:00
6 lines
137 B
Vue
6 lines
137 B
Vue
import type { ComputedRef, Ref } from 'vue';
|
|
|
|
export type DynamicProps<T> = {
|
|
[P in keyof T]: Ref<T[P]> | T[P] | ComputedRef<T[P]>;
|
|
};
|