Calendar Title
This commit is contained in:
parent
0488d18e9b
commit
75a7189889
1 changed files with 3 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<v-list>
|
<v-list>
|
||||||
|
<span class="text-h5 text-md-h4 d-inline-block mb-2">{{ title }}</span>
|
||||||
<template v-for="(event, index) in parsed_events">
|
<template v-for="(event, index) in parsed_events">
|
||||||
<EventItem :event="event" :key="event.hash" />
|
<EventItem :event="event" :key="event.hash" />
|
||||||
<v-divider
|
<v-divider
|
||||||
|
@ -22,6 +23,8 @@ import EventItem from "./EventItem.vue";
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
export default class Calendar extends Vue {
|
export default class Calendar extends Vue {
|
||||||
|
private readonly title = "CALENDAR";
|
||||||
|
|
||||||
private readonly events = [
|
private readonly events = [
|
||||||
{
|
{
|
||||||
summary: "Lorem Ipsum",
|
summary: "Lorem Ipsum",
|
||||||
|
|
Loading…
Reference in a new issue