Skip to content

Commit 80a9bb1

Browse files
committed
Fix - VueUiXy - Import Shape directly
1 parent 26d55fe commit 80a9bb1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/vue-ui-xy.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1613,9 +1613,10 @@ import themes from "../themes.json";
16131613
import { useConfig } from '../useConfig';
16141614
import { useMouse } from '../useMouse';
16151615
import { useNestedProp } from '../useNestedProp';
1616+
import { defineAsyncComponent } from 'vue';
16161617
import Slicer from '../atoms/Slicer.vue';
16171618
import Title from '../atoms/Title.vue';
1618-
import { defineAsyncComponent } from 'vue';
1619+
import Shape from '../atoms/Shape.vue';
16191620
16201621
const sliderId = createUid();
16211622
@@ -1638,8 +1639,8 @@ export default {
16381639
components: {
16391640
Slicer, // Must be ready in responsive mode
16401641
Title, // Must be ready in responsive mode
1642+
Shape,
16411643
DataTable: defineAsyncComponent(() => import('../atoms/DataTable.vue')),
1642-
Shape: defineAsyncComponent(() => import('../atoms/Shape.vue')),
16431644
Tooltip: defineAsyncComponent(() => import('../atoms/Tooltip.vue')),
16441645
UserOptions: defineAsyncComponent(() => import('../atoms/UserOptions.vue')),
16451646
BaseIcon: defineAsyncComponent(() => import('../atoms/BaseIcon.vue')),

0 commit comments

Comments
 (0)