jhbigscreen/src/pages/index.js

9 lines
156 B
JavaScript
Raw Normal View History

2023-08-10 01:16:23 +08:00
import Vue from 'vue'
import App from './index.vue'
import './init.js'
Vue.config.productionTip = false
new Vue({
render: h => h(App),
}).$mount('#app')