mirror of https://github.com/halo-dev/halo
chore: fix incorrect imports (#7558)
#### What type of PR is this? /area ui /kind cleanup #### What this PR does / why we need it: None #### Does this PR introduce a user-facing change? ```release-note None ```pull/7568/head
parent
12ed2d5653
commit
b3ccb4812b
|
@ -14,8 +14,8 @@ import {
|
||||||
VDropdownItem,
|
VDropdownItem,
|
||||||
VEntity,
|
VEntity,
|
||||||
} from "@halo-dev/components";
|
} from "@halo-dev/components";
|
||||||
|
import type { EntityFieldItem, OperationItem } from "@halo-dev/console-shared";
|
||||||
import { useQueryClient } from "@tanstack/vue-query";
|
import { useQueryClient } from "@tanstack/vue-query";
|
||||||
import type { EntityFieldItem, OperationItem } from "packages/shared/dist";
|
|
||||||
import type { Ref } from "vue";
|
import type { Ref } from "vue";
|
||||||
import { computed, inject, markRaw, ref, toRefs } from "vue";
|
import { computed, inject, markRaw, ref, toRefs } from "vue";
|
||||||
import { useI18n } from "vue-i18n";
|
import { useI18n } from "vue-i18n";
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { RoutesMenu } from "@/components/menu/RoutesMenu";
|
import { RoutesMenu } from "@/components/menu/RoutesMenu";
|
||||||
import { IconMore, VMenu, VMenuItem } from "@halo-dev/components";
|
import { IconMore, VMenu, VMenuItem } from "@halo-dev/components";
|
||||||
|
import type { MenuGroupType, MenuItemType } from "@halo-dev/console-shared";
|
||||||
import type { OverlayScrollbars } from "overlayscrollbars";
|
import type { OverlayScrollbars } from "overlayscrollbars";
|
||||||
import { OverlayScrollbarsComponent } from "overlayscrollbars-vue";
|
import { OverlayScrollbarsComponent } from "overlayscrollbars-vue";
|
||||||
import type { MenuGroupType, MenuItemType } from "packages/shared/dist";
|
|
||||||
import { inject, ref, watch } from "vue";
|
import { inject, ref, watch } from "vue";
|
||||||
import { useRoute } from "vue-router";
|
import { useRoute } from "vue-router";
|
||||||
import RiArrowLeftLine from "~icons/ri/arrow-left-line";
|
import RiArrowLeftLine from "~icons/ri/arrow-left-line";
|
||||||
|
|
Loading…
Reference in New Issue