4
0
mirror of https://gitee.com/dcloud/uni-preset-vue synced 2025-05-10 21:37:02 +08:00
2022-10-19 20:55:32 +08:00

8 lines
208 B
TypeScript
Executable File

import Vue from 'vue'
import App from './App.vue'
Vue.config.productionTip = false
const app = new (typeof App === 'function' ? App : Vue.extend(Object.assign({ mpType: 'app' }, App)))
app.$mount();