From 0c0d4d19f38779725127a926a9f7e343b7073feb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=B1=E7=9C=A0=E5=84=80=E5=BC=8F?= <854085467@qq.com> Date: Wed, 23 Nov 2022 04:55:04 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8(component):=20update?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package/component/src/component/dropdown/util.ts | 2 +- package/component/src/component/select/index.vue | 2 +- package/component/src/component/tab/index.vue | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/component/src/component/dropdown/util.ts b/package/component/src/component/dropdown/util.ts index 45b0b451..5073aa5b 100644 --- a/package/component/src/component/dropdown/util.ts +++ b/package/component/src/component/dropdown/util.ts @@ -1,7 +1,7 @@ import { DropdownPlacement } from "./interface"; import { Component, onMounted, onUpdated, ref, VNode, VNodeTypes } from "vue"; -import { isArrayChildren, isComponent, isElement } from "src/utils"; +import { isArrayChildren, isComponent, isElement } from "../../utils"; export interface SlotChildren { value?: VNode[]; diff --git a/package/component/src/component/select/index.vue b/package/component/src/component/select/index.vue index 92ad0275..8e9f82c5 100644 --- a/package/component/src/component/select/index.vue +++ b/package/component/src/component/select/index.vue @@ -26,7 +26,7 @@ import LayTagInput from "../tagInput/index.vue"; import LayDropdown from "../dropdown/index.vue"; import LaySelectOption, { SelectOptionProps } from "../selectOption/index.vue"; import { SelectSize } from "./interface"; -import { isArrayChildren } from "src/utils"; +import { isArrayChildren } from "../../utils"; export interface SelectProps { name?: string; diff --git a/package/component/src/component/tab/index.vue b/package/component/src/component/tab/index.vue index 83add5c4..7bca3085 100644 --- a/package/component/src/component/tab/index.vue +++ b/package/component/src/component/tab/index.vue @@ -29,7 +29,7 @@ import { } from "vue"; import { useResizeObserver } from "@vueuse/core"; import { TabData, TabInjectKey, TabPosition } from "./interface"; -import { isArrayChildren } from "src/utils"; +import { isArrayChildren } from "../../utils"; export interface TabProps { type?: string;