Added missing component registration.
This commit is contained in:
parent
78857522ea
commit
270df75fc8
|
@ -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>({
|
||||
|
|
Loading…
Reference in New Issue