TextPage.vue 666 B

1234567891011121314151617181920212223242526272829303132
  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. created() {
  14. this.commit = this.$store.commit;
  15. this.dispatch = this.$store.dispatch;
  16. this.config = this.$store.state.config;
  17. }
  18. keyHook(event) {
  19. }
  20. }
  21. //-----------------------------------------------------------------------------
  22. </script>
  23. <style scoped>
  24. .main {
  25. flex: 1;
  26. display: flex;
  27. flex-direction: column;
  28. }
  29. </style>