Responsywność, sidebar

This commit is contained in:
2022-07-20 16:31:48 +02:00
parent ddaac97e54
commit a23e11d566
8 changed files with 168 additions and 33 deletions
+5 -2
View File
@@ -3,6 +3,8 @@ import { defineStore } from 'pinia';
export const useStore = defineStore('store', {
state: () => {
return {
chosenOrderType: 'OrderN',
orderInfo: {
stationName: '',
checkpointName: '',
@@ -80,10 +82,10 @@ export const useStore = defineStore('store', {
chosenRows: [1],
header: {
orderNo: '',
orderNo: '1',
trainNo: '',
for: 'pociągu',
date: '',
date: new Date().toLocaleDateString('pl-PL', { day: '2-digit', month: 'long' }),
},
row1: {
@@ -116,3 +118,4 @@ export const useStore = defineStore('store', {
});