You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
569 B
JavaScript

11 months ago
import App from "./App";
import Vue from "vue";
import uView from "uview-ui";
import store from "./store/index.js";
import common from "./common/index.js";
import api from "@/http/";
import moment from "moment";
import ww from "chinese-workday";
Vue.use(uView);
Vue.prototype.$api = api;
Vue.prototype.$common = common;
Vue.prototype.$moment = moment;
Vue.prototype.$isWorkday = ww.isWorkday;
Vue.config.productionTip = false;
// Vue.config.ignoredElements.push("wx-open-launch-weapp");
App.mpType = "app";
const app = new Vue({
...App,
store,
});
app.$mount();