ovdashboard/ui/src/components/Dashboard.vue

21 lines
443 B
Vue

<template>
<v-container fill-height class="pa-0">
<v-layout class="flex-wrap">
<v-col cols="12" sm="4">
<slot name="left" />
</v-col>
<v-col cols="12" sm="8">
<slot name="right" />
</v-col>
</v-layout>
</v-container>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
@Component
export default class Dashboard extends Vue {}
</script>
<style></style>