dl_uniapp/main.js

16 lines
308 B
JavaScript
Raw Permalink Normal View History

2025-03-18 17:41:45 +08:00
import Vue from 'vue'
import App from './App'
import store from './store' // store
import plugins from './plugins' // plugins
import './permission' // permission
Vue.use(plugins)
Vue.config.productionTip = false
Vue.prototype.$store = store
App.mpType = 'app'
const app = new Vue({
2025-04-24 17:10:07 +08:00
...App
2025-03-18 17:41:45 +08:00
})
app.$mount()