1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-30 11:32:29 +03:00
guide/front/client/App.vue

44 lines
672 B
Vue
Raw Normal View History

<template>
<v-app>
2018-09-13 10:51:20 +03:00
<toolbar></toolbar>
<v-content>
<v-container fluid>
<router-view></router-view>
</v-container>
</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-09-05 23:45:46 +03:00
export default class RootComponent extends Vue {}
2018-09-17 01:34:45 +03:00
</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-09-05 23:45:46 +03:00
</style>