chore: typo

This commit is contained in:
Vben
2021-06-19 22:38:29 +08:00
parent d3d620f4fc
commit 7dce50cb1f
9 changed files with 42 additions and 52 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]>;
};