ovdashboard/ui/src/components/Dashboard.vue

22 lines
429 B
Vue
Raw Normal View History

2022-09-13 01:54:02 +00:00
<template>
2022-09-15 15:04:01 +00:00
<v-container fill-height>
<v-layout>
<v-col cols="4">
<slot name="message">MESSAGE</slot>
</v-col>
<v-col cols="8">
<slot name="calendars">CALENDARS</slot>
</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>
<style>
</style>