1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <template>
- <div ref="main" class="main" @click="close">
- <div class="mainWindow" @click.stop>
- <Window @close="close">
- <template slot="header">
- Настройки
- </template>
- </Window>
- </div>
- </div>
- </template>
- <script>
- //-----------------------------------------------------------------------------
- import Vue from 'vue';
- import Component from 'vue-class-component';
- import Window from '../../share/Window.vue';
- export default @Component({
- components: {
- Window,
- },
- })
- class SettingsPage extends Vue {
- sliderValue = null;
- sliderMax = null;
- created() {
- this.commit = this.$store.commit;
- this.reader = this.$store.state.reader;
- }
- close() {
- this.$emit('settings-toggle');
- }
- keyHook(event) {
- if (event.type == 'keydown' && event.code == 'Escape') {
- this.close();
- }
- return true;
- }
- }
- //-----------------------------------------------------------------------------
- </script>
- <style scoped>
- .main {
- position: absolute;
- width: 100%;
- height: 100%;
- z-index: 60;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .mainWindow {
- width: 100%;
- max-width: 600px;
- height: 70%;
- display: flex;
- position: relative;
- }
- </style>
|