123456789101112131415161718192021222324252627282930 |
- <template>
- <div class="page">
- <span class="text-h6 text-bold">Управление с помощью горячих клавиш:</span>
- <ul>
- </ul>
- </div>
- </template>
- <script>
- //-----------------------------------------------------------------------------
- import Vue from 'vue';
- import Component from 'vue-class-component';
- export default @Component({
- })
- class HotkeysHelpPage extends Vue {
- created() {
- }
- }
- //-----------------------------------------------------------------------------
- </script>
- <style scoped>
- .page {
- padding: 15px;
- overflow-y: auto;
- font-size: 120%;
- line-height: 130%;
- }
- </style>
|