Files
spark-store/src/main.ts
Elysia 6622e70033 refactor: improve code formatting and consistency across components
- Updated button and span elements in ThemeToggle.vue and TopActions.vue for better readability.
- Enhanced UninstallConfirmModal.vue and UpdateAppsModal.vue with consistent indentation and spacing.
- Refactored downloadStatus.ts and storeConfig.ts for improved code clarity.
- Standardized string quotes and spacing in typedefinition.ts and processInstall.ts.
- Ensured consistent use of arrow functions and improved variable declarations throughout the codebase.
2026-02-12 18:32:41 +08:00

16 lines
411 B
TypeScript

import { createApp } from "vue";
import App from "./App.vue";
import "./3rdparty/fontawesome-free-6.7.2/css/all.min.css";
import "./assets/css/appstyle.css";
// import './demos/ipc'
// If you want use Node.js, the`nodeIntegration` needs to be enabled in the Main process.
// import './demos/node'
createApp(App)
.mount("#app")
.$nextTick(() => {
postMessage({ payload: "removeLoading" }, "*");
});