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 { defineComponent, ref } from '@vue/composition-api';
 | 
				
			||||||
import { Store } from 'vuex';
 | 
					import { Store } from 'vuex';
 | 
				
			||||||
import { StateInterface } from 'src/store';
 | 
					import { StateInterface } from 'src/store';
 | 
				
			||||||
 | 
					import IsoDateInput from 'src/components/utils/IsoDateInput.vue';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default defineComponent({
 | 
					export default defineComponent({
 | 
				
			||||||
  name: 'CreateEvent',
 | 
					  name: 'CreateEvent',
 | 
				
			||||||
  components: {},
 | 
					  components: { IsoDateInput },
 | 
				
			||||||
  setup(_, { root }) {
 | 
					  setup(_, { root }) {
 | 
				
			||||||
    const store = <Store<StateInterface>>root.$store;
 | 
					    const store = <Store<StateInterface>>root.$store;
 | 
				
			||||||
    const user = ref<FG.User>({
 | 
					    const user = ref<FG.User>({
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue