move Calendar component

This commit is contained in:
Jörn-Michael Miehe 2022-09-14 23:05:34 +00:00
parent 41d3e9088e
commit c6dd690021
2 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import Calendar from "./components/Calendar.vue";
import Calendar from "./components/calendar/Calendar.vue";
import Dashboard from "./components/Dashboard.vue";
import TitleBar from "./components/TitleBar.vue";
import TickerBar from "./components/TickerBar.vue";

View file

@ -6,8 +6,8 @@
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import Event from "./calendar/event";
import EventItem from "./calendar/EventItem.vue";
import Event from "./event";
import EventItem from "./EventItem.vue";
@Component({
components: {