源文件

This commit is contained in:
gyq
2024-07-02 09:59:38 +08:00
parent 49792356d7
commit 921348766c
532 changed files with 70848 additions and 0 deletions

30
main.js Normal file
View File

@@ -0,0 +1,30 @@
import App from './App'
import uView from '@/uni_modules/uview-ui'
import useStorage from '@/utils/useStroage.js'
// #ifndef VUE3
import Vue from 'vue'
import './uni.promisify.adaptor'
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()
// #endif
Vue.use(uView)
// uni.$u.config.unit = 'rpx'
Vue.prototype.useStorage = useStorage
// #ifdef VUE3
import {
createSSRApp
} from 'vue'
export function createApp() {
const app = createSSRApp(App)
return {
app
}
}
// #endif