2022-09-13 01:54:02 +00:00
|
|
|
<template>
|
2022-09-15 15:04:01 +00:00
|
|
|
<v-container fill-height>
|
|
|
|
|
<v-layout>
|
|
|
|
|
<v-row>
|
2022-09-15 16:25:58 +00:00
|
|
|
<v-col cols="4" v-html="message" />
|
|
|
|
|
<v-col cols="8">
|
2022-09-15 15:04:01 +00:00
|
|
|
<slot>CALENDARS</slot>
|
|
|
|
|
</v-col>
|
|
|
|
|
</v-row>
|
|
|
|
|
</v-layout>
|
2022-09-13 01:54:02 +00:00
|
|
|
</v-container>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
|
import { Component, Prop, Vue } from "vue-property-decorator";
|
|
|
|
|
|
|
|
|
|
@Component
|
|
|
|
|
export default class Dashboard extends Vue {
|
|
|
|
|
@Prop({ default: "MESSAGE" })
|
|
|
|
|
private readonly message!: string;
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
</style>
|