安卓扫码器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
478 B

3 years ago
import App from './App'
// #ifndef VUE3
import Vue from 'vue'
// 引入全局TuniaoUI
import TuniaoUI from 'tuniao-ui'
Vue.use(TuniaoUI)
3 years ago
import './uni.promisify.adaptor'
// 引入store
import store from './store'
3 years ago
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
store,
3 years ago
...App
})
app.$mount()
// #endif
// #ifdef VUE3
import { createSSRApp } from 'vue'
export function createApp() {
const app = createSSRApp(App)
return {
app
}
}
// #endif