智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/ed/ed3a1775690f21eff9050c91361...

19 lines
422 B

import Vue from 'vue'
import App from './App'
import uView from 'uview-ui';
import axios from '@/common/network/request.js';
import Md5 from '@/common/md5.js';
import {FormatDate} from '@/common/formatDate.js';
Vue.prototype.FormatDate = FormatDate;
Vue.config.productionTip = false
Vue.prototype.$axios = axios;
Vue.prototype.$md5 = Md5
Vue.use(uView);
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()