feat: 新增主题|多语言配置
This commit is contained in:
11
src/helpers/window_helpers.ts
Normal file
11
src/helpers/window_helpers.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
export async function minimizeWindow() {
|
||||
await window.electronWindow.minimize();
|
||||
}
|
||||
|
||||
export async function maximizeWindow() {
|
||||
await window.electronWindow.maximize();
|
||||
}
|
||||
|
||||
export async function closeWindow() {
|
||||
await window.electronWindow.close();
|
||||
}
|
||||
Reference in New Issue
Block a user