123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <div class="main">
- <pre>{{ lastOpenedBook }}</pre>
- <pre>{{this.$store.state.reader.openedBook}}</pre>
- </div>
- </template>
- <script>
- //-----------------------------------------------------------------------------
- import Vue from 'vue';
- import Component from 'vue-class-component';
- import bookManager from '../share/bookManager';
- export default @Component({
- })
- class TextPage extends Vue {
- created() {
- this.commit = this.$store.commit;
- this.dispatch = this.$store.dispatch;
- this.config = this.$store.state.config;
- this.reader = this.$store.state.reader;
- }
- get lastOpenedBook() {
- return this.$store.getters['reader/lastOpenedBook'];
- }
- keyHook(event) {
- }
- }
- //-----------------------------------------------------------------------------
- </script>
- <style scoped>
- .main {
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- </style>
|