Добавлен компонент GithubCorner на LoaderPage

This commit is contained in:
Book Pauk
2020-01-09 20:15:32 +07:00
parent 977bab4745
commit e89b6e3ea0
2 changed files with 132 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
<template>
<div ref="main" class="main">
<GithubCorner url="https://github.com/bookpauk/liberama" cornerColor="#1B695F"></GithubCorner>
<div class="part top">
<span class="greeting bold-font">{{ title }}</span>
<div class="space"></div>
@@ -54,11 +55,14 @@
//-----------------------------------------------------------------------------
import Vue from 'vue';
import Component from 'vue-class-component';
import GithubCorner from './GithubCorner/GithubCorner.vue';
import PasteTextPage from './PasteTextPage/PasteTextPage.vue';
import {versionHistory} from '../versionHistory';
export default @Component({
components: {
GithubCorner,
PasteTextPage,
},
})