Filtry pociągów

This commit is contained in:
2022-04-14 00:21:22 +02:00
parent e3735c171f
commit 414fd5d5b9
8 changed files with 184 additions and 124 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
import { ComponentCustomProperties } from 'vue'
import { Store } from 'vuex'
import { TrainFilterType } from './scripts/enums/TrainFilterType';
declare module '@vue/runtime-core' {
// declare your own store states
@@ -14,7 +15,7 @@ declare module '@vue/runtime-core' {
// Train filter for TrainView
interface TrainFilter {
id: string;
id: TrainFilterType;
isActive: boolean;
}
}