mirror of
https://github.com/aelve/guide.git
synced 2024-12-25 05:43:32 +03:00
24 lines
387 B
Vue
24 lines
387 B
Vue
<template>
|
|
<v-app>
|
|
<v-content>
|
|
<v-container fluid>
|
|
<router-view></router-view>
|
|
</v-container>
|
|
</v-content>
|
|
<v-footer app></v-footer>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Component from 'vue-class-component'
|
|
import Vue from 'vue'
|
|
|
|
@Component
|
|
export default class RootComponent extends Vue {}
|
|
</script>
|
|
|
|
<style>
|
|
.flex-1 {
|
|
flex: 1
|
|
}
|
|
</style> |