Lokalne zapisywanie rozkazów

This commit is contained in:
2022-07-22 00:17:39 +02:00
parent 459c23df17
commit 667987bdb6
13 changed files with 450 additions and 77 deletions
+3 -1
View File
@@ -3,7 +3,8 @@ import { defineStore } from 'pinia';
export const useStore = defineStore('store', {
state: () => {
return {
chosenOrderType: 'OrderN',
chosenOrderType: 'orderN' as 'orderO' | 'orderS' | 'orderN',
orderMode: 'OrderMessage',
orderFooter: {
stationName: '',
@@ -180,3 +181,4 @@ export const useStore = defineStore('store', {
});