website/src/components/AppContainer.vue

10 lines
188 B
Vue
Raw Normal View History

2020-02-20 01:16:28 +00:00
<template>
<v-container fluid>
<v-row class="justify-center">
<v-col cols="12" md="11" lg="10" xl="8">
<slot/>
</v-col>
</v-row>
</v-container>
</template>