/* GlobalStore for VueJS */
export default class GlobalStore{
constructor(){
this.get = {};
}
set(field, value){
this.get[field] = value;