Skip to content

Commit

Permalink
fix(input-number): string and number compare
Browse files Browse the repository at this point in the history
  • Loading branch information
uyarn committed Aug 30, 2022
1 parent db93b9a commit 5638b92
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/input-number/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import VueCompositionAPI from '@vue/composition-api';
import _InputNumber from './input-number';
import withInstall from '../utils/withInstall';
import { TdInputNumberProps } from './type';
Expand All @@ -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;

0 comments on commit 5638b92

Please sign in to comment.