Рефакторинг, store-модуль reader, начало верстки LoaderPage
This commit is contained in:
51
client/components/Reader/LoaderPage/LoaderPage.vue
Normal file
51
client/components/Reader/LoaderPage/LoaderPage.vue
Normal file
@@ -0,0 +1,51 @@
|
||||
<template>
|
||||
<div class="main">
|
||||
<div class="part">
|
||||
|
||||
</div>
|
||||
<div class="part">
|
||||
|
||||
</div>
|
||||
<div class="part bottom">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
//-----------------------------------------------------------------------------
|
||||
import Vue from 'vue';
|
||||
import Component from 'vue-class-component';
|
||||
|
||||
export default @Component({
|
||||
})
|
||||
class LoaderPage extends Vue {
|
||||
created() {
|
||||
}
|
||||
|
||||
}
|
||||
//-----------------------------------------------------------------------------
|
||||
// justify-content: space-between;
|
||||
|
||||
</script>
|
||||
<style scoped>
|
||||
.main {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
|
||||
.part {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.bottom {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user