mirror of
https://github.com/Spythere/pojazdownik.git
synced 2026-05-03 05:18:10 +00:00
33 lines
726 B
Vue
33 lines
726 B
Vue
<template>
|
|
<div class="stock_spawn-settings">
|
|
<Checkbox :disabled="!store.stockSupportsColdStart" v-model="store.isColdStart">
|
|
{{ $t('stocklist.coldstart-info') }}
|
|
</Checkbox>
|
|
|
|
<Checkbox :disabled="!store.stockSupportsDoubleManning" v-model="store.isDoubleManned">
|
|
{{ $t('stocklist.doublemanning-info') }}
|
|
</Checkbox>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import { useStore } from '../../../store';
|
|
import Checkbox from '../../common/Checkbox.vue';
|
|
|
|
export default defineComponent({
|
|
components: { Checkbox },
|
|
|
|
data: () => ({
|
|
store: useStore(),
|
|
}),
|
|
});
|
|
</script>
|
|
|
|
<style scoped>
|
|
.stock_spawn-settings {
|
|
display: flex;
|
|
gap: 0.5em;
|
|
}
|
|
</style>
|