mirror of
https://github.com/Spythere/genera-tor.git
synced 2026-05-03 05:28:13 +00:00
Poprawki w order helperze
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
<template>
|
||||
<div class="order-helper g-modal">
|
||||
<div class="modal-bg" @click="store.helperModalOpen = false"></div>
|
||||
|
||||
<div class="content modal-content">
|
||||
<h2>Rozkazy pisemne - zastosowania w TD2</h2>
|
||||
|
||||
<hr />
|
||||
<b>Rozkaz pisemny "S" (dot. semaforów)</b>
|
||||
<p>Rozkaz pisemny "S" jest stosowany w następujących sytuacjach:</p>
|
||||
|
||||
<ul>
|
||||
<li v-for="data in orderHelperData.orderS">{{ data }}</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue';
|
||||
import { useStore } from '../store/store';
|
||||
import orderHelperData from '../data/orderHelperData.json';
|
||||
|
||||
export default defineComponent({
|
||||
setup() {
|
||||
return {
|
||||
store: useStore(),
|
||||
orderHelperData,
|
||||
};
|
||||
},
|
||||
});
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.content {
|
||||
width: 100%;
|
||||
max-width: 800px;
|
||||
|
||||
height: 100vh;
|
||||
max-height: 800px;
|
||||
|
||||
margin: 1em;
|
||||
padding: 1em;
|
||||
background-color: #2b2b2b;
|
||||
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
ul {
|
||||
text-align: left;
|
||||
list-style: inside;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user