style 代码格式化

This commit is contained in:
DaxPay
2024-07-02 09:31:05 +08:00
parent 0f3d83e58a
commit aafdd6540e
708 changed files with 16137 additions and 18495 deletions

10
types/directives.d.ts vendored
View File

@@ -1,11 +1,11 @@
import type { Directive } from 'vue';
import { RoleEnum } from '@/enums/roleEnum';
import type { Directive } from 'vue'
import { RoleEnum } from '@/enums/roleEnum'
declare module 'vue' {
export interface ComponentCustomProperties {
vLoading: Directive<Element, boolean>;
vAuth: Directive<Element, string | string[] | RoleEnum[]>;
vLoading: Directive<Element, boolean>
vAuth: Directive<Element, string | string[] | RoleEnum[]>
}
}
export {};
export {}