This commit is contained in:
2022-10-10 10:19:18 +08:00
commit b6c903fd4d
191 changed files with 51152 additions and 0 deletions

16
main.js Normal file
View File

@@ -0,0 +1,16 @@
import App from './App'
import Vue from 'vue'
import '@/common/style/reset.css'
import '@/common/style/uni.css'
import '@/common/style/layout.styl'
Vue.config.productionTip = false
App.mpType = 'app'
import store from '@/vuex/store.js'
const app = new Vue({
...App,
store
})
app.$mount()