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
Ryan Wang 2025-06-16 22:26:52 +08:00 committed by GitHub
parent 12ed2d5653
commit b3ccb4812b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -14,8 +14,8 @@ import {
VDropdownItem,
VEntity,
} from "@halo-dev/components";
import type { EntityFieldItem, OperationItem } from "@halo-dev/console-shared";
import { useQueryClient } from "@tanstack/vue-query";
import type { EntityFieldItem, OperationItem } from "packages/shared/dist";
import type { Ref } from "vue";
import { computed, inject, markRaw, ref, toRefs } from "vue";
import { useI18n } from "vue-i18n";

View File

@ -1,9 +1,9 @@
<script lang="ts" setup>
import { RoutesMenu } from "@/components/menu/RoutesMenu";
import { IconMore, VMenu, VMenuItem } from "@halo-dev/components";
import type { MenuGroupType, MenuItemType } from "@halo-dev/console-shared";
import type { OverlayScrollbars } from "overlayscrollbars";
import { OverlayScrollbarsComponent } from "overlayscrollbars-vue";
import type { MenuGroupType, MenuItemType } from "packages/shared/dist";
import { inject, ref, watch } from "vue";
import { useRoute } from "vue-router";
import RiArrowLeftLine from "~icons/ri/arrow-left-line";