Initial commit

This commit is contained in:
undergroundwires
2019-12-31 16:09:39 +01:00
commit 4e7f244190
108 changed files with 17296 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { ApplicationState, IApplicationState } from '../application/State/ApplicationState';
import { Vue } from 'vue-property-decorator';
export { IApplicationState };
export abstract class StatefulVue extends Vue {
public isLoading = true;
protected getCurrentStateAsync(): Promise<IApplicationState> {
return ApplicationState.GetAsync();
}
}