first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import App from './App'
import Vue from 'vue'
import store from './store'
Vue.config.productionTip = false
App.mpType = 'app'
import init from '@/config/init'
// 注册全局组件
init.VueComponents.forEach(v => Vue.component(v.name, v))
// 挂载非vue插件到vue实例中,这样可以全局调用方法
for (const key in init.NotVuePlugIn) Vue.prototype[key] = init.NotVuePlugIn[key]
const app = new Vue({
store,
...App
})
app.$mount()