1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-23 21:13:07 +03:00
guide/front/client/App.vue
2018-09-13 23:27:21 +03:00

31 lines
493 B
Vue

<template>
<v-app>
<v-content>
<v-container fluid>
<router-view></router-view>
</v-container>
</v-content>
<a-footer />
</v-app>
</template>
<script lang="ts">
import Vue from 'vue'
import Component from 'vue-class-component'
import AFooter from 'client/components/AFooter.vue'
@Component({
components: {
AFooter
}
})
export default class RootComponent extends Vue { }
</script>
<style>
*,
*:before,
*:after {
box-sizing: border-box;
}
</style>