mirror of
https://gitee.com/spark-store-project/spark-store
synced 2026-04-26 09:20:18 +08:00
Initial commit
This commit is contained in:
14
src/main.ts
Normal file
14
src/main.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { createApp } from 'vue'
|
||||
import App from './App.vue'
|
||||
|
||||
import './style.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' }, '*')
|
||||
})
|
||||
Reference in New Issue
Block a user