discord-client/webpack/lib/gstore.js

14 lines
146 B
JavaScript

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