import App from './App' import { estimateCoupon } from './utils/index.js' // #ifndef VUE3 import Vue from 'vue' import './uni.promisify.adaptor' Vue.config.productionTip = false Vue.prototype.$estimateCoupon = estimateCoupon; App.mpType = 'app' const app = new Vue({ ...App }) app.$mount() // #endif // #ifdef VUE3 import { createSSRApp } from 'vue' import store from './store' export function createApp() { const app = createSSRApp(App) app.use(store) app.config.globalProperties.$estimateCoupon = estimateCoupon; return { app } } // #endif