17 lines
378 B
JavaScript
17 lines
378 B
JavaScript
|
const install = (Vue, vm) => {
|
||
|
// 此为自定义配置参数,具体参数见上方说明
|
||
|
Vue.prototype.$u.http.setConfig({
|
||
|
baseUrl: 'https://dmmall.sdbairui.com//storeapi/',
|
||
|
loadingText: '努力加载中~',
|
||
|
loadingTime: 800,
|
||
|
// 设置自定义头部content-type
|
||
|
// header: {
|
||
|
// 'content-type': 'xxx'
|
||
|
// }
|
||
|
// ......
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export default {
|
||
|
install
|
||
|
}
|