mirror of
https://gitee.com/dcloud/uni-preset-vue
synced 2025-04-21 04:36:22 +08:00
9 lines
242 B
TypeScript
Executable File
9 lines
242 B
TypeScript
Executable File
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import './uni.promisify.adaptor'
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
const app = new (typeof App === 'function' ? App : Vue.extend(Object.assign({ mpType: 'app' }, App)))
|
|
app.$mount();
|