style ESline规则更新

This commit is contained in:
xxm
2022-10-03 19:26:05 +08:00
parent 488776ca27
commit be13e7b425
732 changed files with 15318 additions and 17298 deletions

6
types/utils.d.ts vendored
View File

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