feature fix: akceptowalna masa składu

This commit is contained in:
2023-02-19 22:55:38 +01:00
parent 7ea7ad5da2
commit ebf6567e88
5 changed files with 77 additions and 187 deletions
+2
View File
@@ -1,6 +1,7 @@
import { IStore } from './types';
import { defineStore } from 'pinia';
import {
acceptableMass,
carDataList,
chosenRealStock,
isTrainPassenger,
@@ -53,6 +54,7 @@ export const useStore = defineStore({
maxStockSpeed: (state) => maxStockSpeed(state),
isTrainPassenger: (state) => isTrainPassenger(state),
chosenRealStock: (state) => chosenRealStock(state),
acceptableMass: (state) => acceptableMass(state),
},
});