12345678910111213141516171819202122232425262728 |
- import Vue from "vue";
- import App from "./App.vue";
- import router from "./router";
- import store from "./store";
- import GLOBAL from "./config";
- import globalVuePlugins from "./plugins/globalVuePlugins";
- import "./plugins/axios";
- import "./plugins/filters";
- // https://github.com/RobinCK/vue-ls
- import VueLocalStorage from "vue-ls";
- import ElementUI from "element-ui";
- import "element-ui/lib/theme-chalk/index.css";
- import "./assets/styles/index.scss";
- Vue.use(ElementUI, { size: "small" });
- Vue.use(VueLocalStorage, { namespace: "vs_", storage: "session" });
- Vue.use(globalVuePlugins);
- Vue.prototype.GLOBAL = GLOBAL;
- Vue.config.productionTip = false;
- new Vue({
- router,
- store,
- render: h => h(App)
- }).$mount("#app");
|