23 lines
430 B
Vue
23 lines
430 B
Vue
|
|
<template>
|
||
|
|
<v-container>
|
||
|
|
<v-row>
|
||
|
|
<v-col cols="5" v-html="message" />
|
||
|
|
<v-col cols="7">
|
||
|
|
<slot>CALENDARS</slot>
|
||
|
|
</v-col>
|
||
|
|
</v-row>
|
||
|
|
</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>
|