import Vue from "vue"; const paramsFormat = function (params) { let strArray = [] for(let key in params) { strArray.push(key+'='+params[key]) } return strArray.join('&') } Vue.prototype.$paramsFormat = paramsFormat