mirror of
https://github.com/heyman/heynote.git
synced 2025-04-13 14:28:19 +02:00
11 lines
219 B
TypeScript
11 lines
219 B
TypeScript
import { createApp } from 'vue'
|
|
import "./style.css"
|
|
import App from './App.vue'
|
|
import './samples/node-api'
|
|
|
|
createApp(App)
|
|
.mount('#app')
|
|
.$nextTick(() => {
|
|
postMessage({ payload: 'removeLoading' }, '*')
|
|
})
|