Skip to content

Commit

Permalink
chore: types import shorted
Browse files Browse the repository at this point in the history
  • Loading branch information
ngtive committed Oct 24, 2023
1 parent 9e2fe6c commit a0bb9e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/VOnboardingStep.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
</div>
</template>
<script lang="ts">
import { OnboardingState, STATE_INJECT_KEY } from '@/types/index';
import { OnboardingState, STATE_INJECT_KEY } from '@/types';
import { createPopper } from '@popperjs/core';
import merge from 'lodash.merge';
import { Ref, computed, defineComponent, inject, nextTick, ref, watch } from 'vue';
Expand Down
2 changes: 1 addition & 1 deletion src/components/VOnboardingWrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<script lang="ts">
import VOnboardingStep from '@/components/VOnboardingStep.vue';
import useGetElement from '@/composables/useGetElement';
import { OnboardingState, Direction, STATE_INJECT_KEY } from '@/types/index';
import { OnboardingState, Direction, STATE_INJECT_KEY } from '@/types';
import type { StepEntity, onBeforeStepOptions, onAfterStepOptions } from '@/types/StepEntity';
import { defaultVOnboardingWrapperOptions, VOnboardingWrapperOptions } from '@/types/VOnboardingWrapper';
import merge from 'lodash.merge';
Expand Down

0 comments on commit a0bb9e6

Please sign in to comment.