4
0
mirror of https://gitee.com/dcloud/uni-preset-vue synced 2025-05-12 14:21:33 +08:00
2019-04-18 14:20:14 +08:00

12 lines
157 B
JavaScript
Executable File

import Vue from 'vue'
import App from './App'
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()