Vue中的resoure请求根路径怎么动态修改

1.man.js中设置了resource请求的根路径

import VueResource from 'vue-resource'
Vue.use(VueResource);
Vue.http.options.root = store.state.httpLocation;
Vue.http.options.emulateJSON = true;

2.需求是,我在登录时需要设置请求的域名的端口号
怎样才能动态修改?
我在登录组件用使用

this.$http.options.root = newValue;

并不能修改,也不报错。
请问怎么解决啊?

西门子1200和纬创AC70变频器Modbus Rtu通讯编程教程

全局配置vue-resource请求;
Vue.http.options.root = '/root';