Files
entityControl_mobile/main.js
2026-03-06 16:50:46 +08:00

24 lines
445 B
JavaScript

import App from './App'
import { parseTime } from '@/utils/date'
// #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
// #ifdef VUE3
import { createSSRApp } from 'vue'
export function createApp() {
const app = createSSRApp(App)
app.config.globalProperties.parseTime = parseTime
return {
app
}
}
// #endif