main.js 190 B

12345678910111213
  1. import Vue from 'vue'
  2. import App from './App'
  3. Vue.config.productionTip = false
  4. Vue.prototype.toJSON=()=>{return this}
  5. App.mpType = 'app'
  6. const app = new Vue({
  7. ...App
  8. })
  9. app.$mount()