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.
19 lines
422 B
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() |