| | |
| | | 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; |
| | | |