2021-09-09 09:37:02 +08:00

8 lines
149 B
TypeScript

import { createApp } from 'vue'
import App from './App.vue'
import './index.css'
createApp(App)
.mount('#app')
.$nextTick(window.removeLoading)