cczg-lottery-activity/main.js

36 lines
572 B
JavaScript

import App from './App'
// #ifndef VUE3
import Vue from 'vue'
import Vuex from 'vuex'
import './uni.promisify.adaptor'
Vue.config.productionTip = false
App.mpType = 'app'
import uView from '@/uni_modules/uview-ui'
Vue.use(uView)
Vue.use(Vuex)
// import {store} from '@/store/coupon.js'
const app = new Vue({
...App,
// store
})
app.$mount()
// #endif
// #ifdef VUE3
import { createSSRApp } from 'vue'
// import {store} from './store/auth.js'
export function createApp() {
const app = createSSRApp(App)
// app.use(store)
return {
app,
}
}
// #endif