Added missing component registration.

This commit is contained in:
Ferdinand Thiessen 2021-01-25 23:43:18 +01:00
parent 78857522ea
commit 270df75fc8
1 changed files with 3 additions and 1 deletions

View File

@ -38,9 +38,11 @@
import { defineComponent, ref } from '@vue/composition-api';
import { Store } from 'vuex';
import { StateInterface } from 'src/store';
import IsoDateInput from 'src/components/utils/IsoDateInput.vue';
export default defineComponent({
name: 'CreateEvent',
components: {},
components: { IsoDateInput },
setup(_, { root }) {
const store = <Store<StateInterface>>root.$store;
const user = ref<FG.User>({