From 506d9ea9370dd465f3a6c6347bbb9ddc8658b588 Mon Sep 17 00:00:00 2001 From: Uyarn Date: Tue, 30 Aug 2022 11:59:07 +0800 Subject: [PATCH] fix(input-number): string and number compare --- src/_common | 2 +- src/input-number/index.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/_common b/src/_common index bce177abe..e001e813c 160000 --- a/src/_common +++ b/src/_common @@ -1 +1 @@ -Subproject commit bce177abe0962dd5932b66823f517796676228a9 +Subproject commit e001e813c413bdda7d64fc29decafc154712f0aa diff --git a/src/input-number/index.ts b/src/input-number/index.ts index a9550ddd7..99e07536a 100644 --- a/src/input-number/index.ts +++ b/src/input-number/index.ts @@ -1,3 +1,4 @@ +import VueCompositionAPI from '@vue/composition-api'; import _InputNumber from './input-number'; import withInstall from '../utils/withInstall'; import { TdInputNumberProps } from './type'; @@ -7,5 +8,5 @@ import './style'; export type InputNumberProps = TdInputNumberProps; export * from './type'; -export const InputNumber = withInstall(_InputNumber); +export const InputNumber = withInstall(_InputNumber, VueCompositionAPI); export default InputNumber;