| 123456789101112131415161718192021222324 | import Vue from 'vue'import App from './App'Vue.config.productionTip = falseimport '@/common/bluetooth.js';//全局数据状态管理 vueximport store from '@/store/index.js';Vue.prototype.$store = store;App.mpType = 'app'// #ifdef H5// 提交前需要注释  本地调试使用const vconsole = require('vconsole')Vue.prototype.$vconsole = new vconsole() // 使用vconsole// #endifconst app = new Vue({    ...App})app.$mount()
 |