jeecgboot vue3 ui

This commit is contained in:
zhangdaiscott
2021-10-20 14:32:09 +08:00
parent acc9633d62
commit 5a8812318e
854 changed files with 87119 additions and 199 deletions

5
types/utils.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
import type { ComputedRef, Ref } from 'vue';
export type DynamicProps<T> = {
[P in keyof T]: Ref<T[P]> | T[P] | ComputedRef<T[P]>;
};