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;