ovdashboard/ui/src/components/Dashboard.vue

22 lines
443 B
Vue
Raw Normal View History

2022-09-13 01:54:02 +00:00
<template>
2022-09-15 19:45:34 +00:00
<v-container fill-height class="pa-0">
2022-09-15 20:30:25 +00:00
<v-layout class="flex-wrap">
<v-col cols="12" sm="4">
2022-09-24 16:45:51 +00:00
<slot name="left" />
</v-col>
2022-09-15 20:30:25 +00:00
<v-col cols="12" sm="8">
2022-09-24 16:45:51 +00:00
<slot name="right" />
</v-col>
2022-09-15 15:04:01 +00:00
</v-layout>
2022-09-13 01:54:02 +00:00
</v-container>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
2022-09-13 01:54:02 +00:00
@Component
export default class Dashboard extends Vue {}
2022-09-13 01:54:02 +00:00
</script>
2023-10-26 22:28:59 +00:00
<style></style>