Wyświetlanie historii dyżurnych tylko dla PL1

This commit is contained in:
2022-01-10 18:57:02 +01:00
parent e63dbb9633
commit 69c32294f6
3 changed files with 19 additions and 5 deletions
@@ -40,8 +40,11 @@
</template>
<script lang="ts">
import { GETTERS } from '@/constants/storeConstants';
import { useStore } from '@/store';
import axios from 'axios';
import { defineComponent } from 'vue';
import { useRouter } from 'vue-router';
interface DispatcherTimeline {
date: string;
@@ -92,6 +95,9 @@ export default defineComponent({
},
},
setup() {
const store = useStore();
const router = useRouter();
return {};
},