fix: correct package import paths (#7506)

#### What type of PR is this?

/kind cleanup
/area ui

#### What this PR does / why we need it:

Fix correct package import paths

#### Does this PR introduce a user-facing change?

```release-note
None
```
This commit is contained in:
Ryan Wang
2025-06-06 17:06:56 +08:00
committed by GitHub
parent 6d3c2494f6
commit 47e517d9bf
7 changed files with 7 additions and 7 deletions

View File

@@ -5,7 +5,7 @@ import {
VButton,
VPageHeader,
} from "@halo-dev/components";
import type { DashboardWidgetDefinition } from "packages/shared/dist";
import type { DashboardWidgetDefinition } from "@halo-dev/console-shared";
import { computed, type ComputedRef, provide, ref } from "vue";
import WidgetViewItem from "./components/WidgetViewItem.vue";
import { useDashboardExtensionPoint } from "./composables/use-dashboard-extension-point";