123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <template>
- <div class="page">
- <div style="font-size: 120%">
- <div class="text-h6 text-bold">
- Доступны следующие клавиатурные команды:
- </div>
- <br>
- </div>
- <div class="q-mb-md" style="width: 550px">
- <div class="text-right text-italic" style="font-size: 80%">
- * Изменить сочетания клавиш можно в настройках
- </div>
- <UserHotKeys v-model="userHotKeys" readonly />
- </div>
- </div>
- </template>
- <script>
- //-----------------------------------------------------------------------------
- import vueComponent from '../../../vueComponent.js';
- import UserHotKeys from '../../SettingsPage/KeysTab/UserHotKeys/UserHotKeys.vue';
- const componentOptions = {
- components: {
- UserHotKeys,
- },
- };
- class HotkeysHelpPage {
- _options = componentOptions;
- created() {
- }
- get userHotKeys() {
- return this.$store.state.reader.settings.userHotKeys;
- }
- set userHotKeys(value) {
- //no setter
- }
- }
- export default vueComponent(HotkeysHelpPage);
- //-----------------------------------------------------------------------------
- </script>
- <style scoped>
- .page {
- padding: 15px;
- overflow-y: auto;
- }
- </style>
|