19 lines
320 B
JavaScript
19 lines
320 B
JavaScript
/**
|
|
* {}
|
|
* @author yutent<yutent.io@gmail.com>
|
|
* @date 2023/07/18 16:01:13
|
|
*/
|
|
|
|
import 'es.shim'
|
|
import '@/lib/polyfill.js'
|
|
|
|
import '@bd/ui/card/index.js'
|
|
import '@bd/ui/space/index.js'
|
|
|
|
import { createApp } from 'vue'
|
|
import App from './app.vue'
|
|
|
|
import store from './store'
|
|
|
|
createApp(App).use(store).mount('#app')
|