style: update vue dep

refactor-tabs
tangjinzhou 2021-10-06 22:19:26 +08:00
parent a679542418
commit 8c4eb40372
5 changed files with 5 additions and 7 deletions

View File

@ -1,4 +1,4 @@
import type { CSSProperties } from '@vue/runtime-dom';
import type { CSSProperties } from 'vue';
import type { AlignType } from '../vc-align/interface';
import Trigger from '../vc-trigger';
import classNames from '../_util/classNames';

View File

@ -7,7 +7,7 @@ import { setDateTime as setTime } from '../../utils/timeUtil';
import type { PanelRefProps, DisabledTime } from '../../interface';
import KeyCode from '../../../_util/KeyCode';
import classNames from '../../../_util/classNames';
import { ref } from '@vue/reactivity';
import { ref } from 'vue';
import useMergeProps from '../../hooks/useMergeProps';
export type DatetimePanelProps<DateType> = {

View File

@ -1,9 +1,7 @@
import { scrollTo, waitElementReady } from '../../utils/uiUtil';
import { useInjectPanel } from '../../PanelContext';
import classNames from '../../../_util/classNames';
import { ref } from '@vue/reactivity';
import { onBeforeUnmount, watch } from '@vue/runtime-core';
import { defineComponent, nextTick } from 'vue';
import { ref, onBeforeUnmount, watch, defineComponent, nextTick } from 'vue';
export type Unit = {
label: any;

View File

@ -4,7 +4,7 @@ import TimeBody from './TimeBody';
import type { PanelSharedProps, DisabledTimes } from '../../interface';
import { createKeydownHandler } from '../../utils/uiUtil';
import classNames from '../../../_util/classNames';
import { ref } from '@vue/reactivity';
import { ref } from 'vue';
import useMergeProps from '../../hooks/useMergeProps';
export type SharedTimeProps<DateType> = {

View File

@ -1,4 +1,4 @@
import type { CSSProperties } from '@vue/runtime-dom';
import type { CSSProperties } from 'vue';
import getScrollBarSize from '../../_util/getScrollBarSize';
import setStyle from '../../_util/setStyle';