discord-client/webpack/lib/gstore.js

14 lines
146 B
JavaScript
Raw Normal View History

2018-03-21 17:44:27 +00:00
/* GlobalStore for VueJS */
export class GlobalStore{
constructor(){
this.get = {};
}
set(field, value){
this.get[field] = value;
}
}