discord-client/parcel/lib/gstore.js

14 lines
154 B
JavaScript
Raw Permalink Normal View History

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