browser-benchmark/src/main.js

19 lines
320 B
JavaScript
Raw Normal View History

2023-07-18 18:24:13 +08:00
/**
* {}
* @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')