style: update vue dep
parent
a679542418
commit
8c4eb40372
|
@ -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';
|
||||
|
|
|
@ -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> = {
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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> = {
|
||||
|
|
|
@ -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';
|
||||
|
||||
|
|
Loading…
Reference in New Issue