Files
spark-store/src/main.ts
Elysia 50fb1a0065 feat(install): added basis install process
Now it is able to install apps from the render process and properly display logs on the app detial page.
2026-01-25 22:30:39 +08:00

16 lines
405 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' }, '*')
})