index.ts 309 B

1234567891011121314
  1. import { LauncherModule } from "..";
  2. import { Application } from "../objects/Application";
  3. export const stores = LauncherModule.store({
  4. state: () => ({
  5. readyState: false,
  6. apps: [] as Application[],
  7. }),
  8. actions: {
  9. setApps(apps: Application[]) {
  10. this.store.apps = apps;
  11. },
  12. },
  13. });