Skip to content

Commit 461d307

Browse files
author
Anthony Gore
committed
26
1 parent 2faf7dc commit 461d307

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

src/components/App.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,13 @@
2222
<calendar-day v-for="day in week" :day="day"></calendar-day>
2323
</div>
2424
</div>
25+
<event-form></event-form>
2526
</div>
2627
</template>
2728
<script>
2829
import CalendarDay from './CalendarDay.vue';
2930
import CurrentMonth from './CurrentMonth.vue';
31+
import EventForm from './EventForm.vue';
3032
3133
export default {
3234
computed: {
@@ -88,7 +90,8 @@
8890
},
8991
components: {
9092
CalendarDay,
91-
CurrentMonth
93+
CurrentMonth,
94+
EventForm
9295
}
9396
}
9497
</script>

src/components/EventForm.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<template>
2+
<div id="event-form" :class="{ active: true }" :style="{ top: '500px', left: '500px' }"></div>
3+
</template>
4+
<script>
5+
6+
</script>

0 commit comments

Comments
 (0)