import Http from './http'; import config from './config'; import api from '../api'; const $http = new Http(); $http.set_config(config); const install = (Vue:any) => { const VueCopy = Vue; VueCopy.prototype.$api = {...api}; VueCopy.prototype.$http = $http; }; export default { install }; export { $http, }