1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-25 13:51:45 +03:00
guide/front/client/App.vue

86 lines
1.4 KiB
Vue
Raw Normal View History

<template>
<v-app>
2018-09-13 10:51:20 +03:00
<toolbar></toolbar>
<v-content>
<router-view></router-view>
</v-content>
2018-09-13 23:27:21 +03:00
<a-footer />
</v-app>
</template>
<script lang="ts">
2018-09-05 23:45:46 +03:00
import Vue from 'vue'
2018-09-13 23:27:21 +03:00
import Component from 'vue-class-component'
import AFooter from 'client/components/AFooter.vue'
2018-09-13 10:51:20 +03:00
import Toolbar from './components/Toolbar.vue'
@Component({
components: {
2018-09-17 01:34:45 +03:00
Toolbar,
2018-09-13 23:27:21 +03:00
AFooter
2018-09-13 10:51:20 +03:00
}
})
2018-12-13 16:30:42 +03:00
export default class RootComponent extends Vue { }
</script>
2018-09-05 23:45:46 +03:00
<style>
2018-09-13 10:51:20 +03:00
*,
*:before,
*:after {
box-sizing: border-box;
2018-09-05 23:45:46 +03:00
}
2018-09-23 17:36:05 +03:00
p {
margin: 0;
}
2018-09-24 16:20:11 +03:00
code.sourceCode {
min-width: 100%;
padding: 8px;
margin: 0 0 15px;
}
2018-12-13 16:30:42 +03:00
/* Transition styles */
/* .slidedown-enter-active {
transition: transform .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.slidedown-leave-active {
transition: transform .3s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.slidedown-enter, .slidedown-leave-to {
transform: scaleY(0);
} */
2018-10-28 18:29:54 +03:00
a {
text-decoration-line: none;
}
a:hover {
text-decoration-line: underline;
}
2018-12-13 16:30:42 +03:00
div.sourceCode {
overflow-x: auto;
}
table.sourceCode,
tr.sourceCode,
td.lineNumbers,
td.sourceCode {
margin: 0;
padding: 0;
vertical-align: baseline;
border: none;
}
table.sourceCode {
width: 100%;
line-height: 100%;
}
td.lineNumbers {
text-align: right;
padding-right: 4px;
padding-left: 4px;
color: #aaaaaa;
border-right: 1px solid #aaaaaa;
}
td.sourceCode {
padding-left: 5px;
}
2018-12-09 13:58:07 +03:00
</style>