Добавлена загрузка книги на клиента, сопутствующие компоненты, классы и модули
This commit is contained in:
34
client/components/Reader/TextPage/TextPage.vue
Normal file
34
client/components/Reader/TextPage/TextPage.vue
Normal file
@@ -0,0 +1,34 @@
|
||||
<template>
|
||||
<div class="main">
|
||||
Text page
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
//-----------------------------------------------------------------------------
|
||||
import Vue from 'vue';
|
||||
import Component from 'vue-class-component';
|
||||
|
||||
export default @Component({
|
||||
})
|
||||
class TextPage extends Vue {
|
||||
bookUrl = null;
|
||||
|
||||
created() {
|
||||
this.commit = this.$store.commit;
|
||||
this.dispatch = this.$store.dispatch;
|
||||
this.config = this.$store.state.config;
|
||||
}
|
||||
|
||||
keyHook(event) {
|
||||
}
|
||||
}
|
||||
//-----------------------------------------------------------------------------
|
||||
</script>
|
||||
<style scoped>
|
||||
.main {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user