migrate about page to composition API and typescript

This commit is contained in:
MaysWind
2025-01-11 01:56:50 +08:00
parent b2e36a24fd
commit 04f373e931
10 changed files with 192 additions and 126 deletions
+8 -1
View File
@@ -3,7 +3,14 @@ declare const __EZBOOKKEEPING_VERSION__: string;
declare const __EZBOOKKEEPING_BUILD_UNIX_TIME__: string;
declare const __EZBOOKKEEPING_BUILD_COMMIT_HASH__: string;
declare const __EZBOOKKEEPING_LICENSE__: string;
declare const __EZBOOKKEEPING_THIRD_PARTY_LICENSES__: string[];
declare const __EZBOOKKEEPING_THIRD_PARTY_LICENSES__: LicenseInfo[];
declare interface LicenseInfo {
name: string;
copyright?: string;
url?: string;
licenseUrl?: string;
}
interface Window {
EZBOOKKEEPING_SERVER_SETTINGS?: {