(GoodsActionMiniBtn);
diff --git a/packages/goods-action/en-US.md b/packages/goods-action/en-US.md
index c1e91409a..b8549ad72 100644
--- a/packages/goods-action/en-US.md
+++ b/packages/goods-action/en-US.md
@@ -89,13 +89,12 @@ Use `info` prop to show messages in upper right corner of icon
|------|------|------|------|
| text | Button text | `String` | - |
| icon | Icon | `String` | - |
-| icon-class | Icon class name | `String` | `''` |
+| icon-class | Icon class name | `any` | `''` |
| info | Info message | `String | Number` | - |
| url | Link | `String` | - |
| to | Target route of the link, same as to of `vue-router` | `String | Object` | - |
| replace | If true, the navigation will not leave a history record | `String` | `false` |
-
#### GoodsActionBigBtn
| Attribute | Description | Type | Default |
diff --git a/packages/goods-action/index.js b/packages/goods-action/index.tsx
similarity index 52%
rename from packages/goods-action/index.js
rename to packages/goods-action/index.tsx
index d6c0649e9..3e09c01d2 100644
--- a/packages/goods-action/index.js
+++ b/packages/goods-action/index.tsx
@@ -1,9 +1,18 @@
import { use } from '../utils';
import { inherit } from '../utils/functional';
+// Types
+import { CreateElement, RenderContext } from 'vue/types';
+import { DefaultProps, DefaultSlots } from '../utils/use/sfc';
+
const [sfc, bem] = use('goods-action');
-function GoodsAction(h, props, slots, ctx) {
+function GoodsAction(
+ h: CreateElement,
+ props: DefaultProps,
+ slots: DefaultSlots,
+ ctx: RenderContext
+) {
return (
{slots.default && slots.default()}
diff --git a/packages/goods-action/zh-CN.md b/packages/goods-action/zh-CN.md
index be92b8f25..2c22a1df1 100644
--- a/packages/goods-action/zh-CN.md
+++ b/packages/goods-action/zh-CN.md
@@ -88,7 +88,7 @@ export default {
|------|------|------|------|------|
| text | 按钮文字 | `String` | - | - |
| icon | 图标 | `String` | - | - |
-| icon-class | 图标额外类名 | `String` | - | - |
+| icon-class | 图标额外类名 | `any` | - | - |
| info | 图标右上角提示信息 | `String | Number` | - | - |
| url | 跳转链接 | `String` | - | - |
| to | 路由跳转对象,同 `vue-router` 的 to | `String | Object` | - | - |