feat(install): add app uninstall functionality

This commit is contained in:
Elysia
2026-01-26 00:56:39 +08:00
parent d51756c124
commit ac0dc225bc
5 changed files with 92 additions and 30 deletions

View File

@@ -2,4 +2,7 @@ import { ref } from "vue";
export const APM_STORE_BASE_URL=import.meta.env.VITE_APM_STORE_BASE_URL;
export const APM_STORE_ARCHITECTURE='amd64-apm';
export const currentApp = ref<any>(null);
// 下面的变量用于存储当前应用的信息,其实用在多个组件中
export const currentApp = ref<any>(null);
export const currentAppIsInstalled = ref(false);