mirror of
https://github.com/Spythere/station-manager-2.0.git
synced 2026-05-03 05:28:13 +00:00
dodano pole do ukrywania szlaków
This commit is contained in:
@@ -23,7 +23,8 @@
|
||||
|
||||
<span v-else-if="propName === 'checkpoints'">{{ station[propName] ? 'POKAŻ' : 'DODAJ' }}</span>
|
||||
|
||||
<span v-else-if="propName === 'routes'" v-html="getRouteNames(station.routesInfo)"></span>
|
||||
<RouteList v-else-if="propName === 'routes'" :routes="station.routesInfo" />
|
||||
<!-- <span v-else-if="propName === 'routes'" v-html="getRouteNames(station.routesInfo)"></span> -->
|
||||
|
||||
<span v-else-if="propName === 'signalType'"> {{ station[propName] }}</span>
|
||||
|
||||
@@ -63,12 +64,12 @@ import { useStore } from '../store';
|
||||
import { SceneryRowItem, Availability, AuthState } from '../types/types';
|
||||
import RoutesModal from '../components/RoutesModal.vue';
|
||||
import TableActions from '../components/TableActions.vue';
|
||||
import routesMixin from '../mixins/routesMixin';
|
||||
import UpdateCard from '../components/UpdateCard.vue';
|
||||
import RouteList from '../components/RouteList.vue';
|
||||
|
||||
export default defineComponent({
|
||||
components: { RoutesModal, TableActions, UpdateCard },
|
||||
mixins: [changeMixin, routesMixin],
|
||||
components: { RoutesModal, TableActions, UpdateCard, RouteList },
|
||||
mixins: [changeMixin],
|
||||
|
||||
data: () => ({
|
||||
AuthState,
|
||||
|
||||
Reference in New Issue
Block a user