mirror of
https://gitee.com/dcloud/uni-preset-vue
synced 2025-04-10 07:43:05 +08:00
8 lines
208 B
TypeScript
Executable File
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();
|