| | |
| | | // (runtime-only or standalone) has been set in webpack.base.conf with an alias. |
| | | import Vue from 'vue' |
| | | import ViewUI from 'view-design' |
| | | // import 'view-design/dist/styles/iview.css' |
| | | import 'view-design/dist/styles/iview.css' |
| | | import App from './App' |
| | | import { router } from './router/index' |
| | | import store from './store' |
| | | import i18n from '@/locale' |
| | | import { getRequest, postRequest, putRequest, postBodyRequest, getNoAuthRequest, postNoAuthRequest } from '@/libs/axios' |
| | | import { setStore, getStore, removeStore } from '@/libs/storage' |
| | | import { setStore, getStore, removeStore,setSessionStore,getSessionStore } from '@/libs/storage' |
| | | import { format } from "date-fns" |
| | | import util from '@/libs/util' |
| | | import hasPermission from '@/libs/hasPermission' |
| | |
| | | Vue.prototype.postNoAuthRequest = postNoAuthRequest; |
| | | Vue.prototype.setStore = setStore; |
| | | Vue.prototype.getStore = getStore; |
| | | Vue.prototype.setSessionStore = setSessionStore; |
| | | Vue.prototype.getSessionStore = getSessionStore; |
| | | |
| | | Vue.prototype.removeStore = removeStore; |
| | | Vue.prototype.format = format; |
| | | |