mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 20:24:51 +08:00
11 lines
265 B
JavaScript
11 lines
265 B
JavaScript
import ko from 'ko';
|
|
|
|
class PluginAdminStore {
|
|
constructor() {
|
|
this.plugins = ko.observableArray([]);
|
|
this.plugins.loading = ko.observable(false).extend({ throttle: 100 });
|
|
this.plugins.error = ko.observable('');
|
|
}
|
|
}
|
|
|
|
export default new PluginAdminStore();
|