This commit is contained in:
2025-06-25 14:15:59 +08:00
commit 9ff7df89e3
360 changed files with 47740 additions and 0 deletions

20
main.js Normal file
View File

@ -0,0 +1,20 @@
import Vue from 'vue'
import App from './App'
import store from './store' // store
import plugins from './plugins' // plugins
import './permission' // permission
import { getDicts } from "@/api/system/dict/data"
Vue.use(plugins)
Vue.config.productionTip = false
Vue.prototype.$store = store
Vue.prototype.getDicts = getDicts
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()