TextPage.vue 687 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div class="main">
  3. Text page
  4. </div>
  5. </template>
  6. <script>
  7. //-----------------------------------------------------------------------------
  8. import Vue from 'vue';
  9. import Component from 'vue-class-component';
  10. export default @Component({
  11. })
  12. class TextPage extends Vue {
  13. bookUrl = null;
  14. created() {
  15. this.commit = this.$store.commit;
  16. this.dispatch = this.$store.dispatch;
  17. this.config = this.$store.state.config;
  18. }
  19. keyHook(event) {
  20. }
  21. }
  22. //-----------------------------------------------------------------------------
  23. </script>
  24. <style scoped>
  25. .main {
  26. flex: 1;
  27. display: flex;
  28. flex-direction: column;
  29. }
  30. </style>