Fixed invalid import
This commit is contained in:
parent
1a63f350a2
commit
b6cfaf8c4b
|
@ -104,7 +104,7 @@ import { computed, defineComponent, PropType, ref, onBeforeMount } from 'vue';
|
|||
import { date, ModifyDateOptions } from 'quasar';
|
||||
import { useScheduleStore } from '../../store';
|
||||
import { notEmpty } from '@flaschengeist/api';
|
||||
import IsoDateInput from 'src/components/utils/IsoDateInput.vue';
|
||||
import { IsoDateInput } from '@flaschengeist/api/components';
|
||||
import Job from './Job.vue';
|
||||
import RecurrenceRule from './RecurrenceRule.vue';
|
||||
|
||||
|
|
|
@ -35,8 +35,8 @@
|
|||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import IsoDateInput from 'src/components/utils/IsoDateInput.vue';
|
||||
import { defineComponent, PropType } from 'vue';
|
||||
import { IsoDateInput } from '@flaschengeist/api/components';
|
||||
import { notEmpty } from '@flaschengeist/api';
|
||||
|
||||
export default defineComponent({
|
||||
|
|
Loading…
Reference in New Issue