-
+
-
+
-
+
-
+
diff --git a/components/steps/demo/index.vue b/components/steps/demo/index.vue
index 170a6b7e4..d8628c316 100644
--- a/components/steps/demo/index.vue
+++ b/components/steps/demo/index.vue
@@ -29,6 +29,11 @@ const md = {
When the task is complicated or has a certain sequence in the series of subtasks, we can decompose it into several steps to make things easier.`,
}
export default {
+ category: 'Components',
+ subtitle: '步骤条',
+ type: 'Navigation',
+ cols: 1,
+ title: 'Steps',
render () {
return (
diff --git a/components/steps/index.en-US.md b/components/steps/index.en-US.md
index d694abc27..0448b8afe 100644
--- a/components/steps/index.en-US.md
+++ b/components/steps/index.en-US.md
@@ -6,7 +6,7 @@ The whole of the step bar.
| -------- | ----------- | ---- | ------- |
| current | to set the current step, counting from 0. You can overwrite this state by using `status` of `Step` | number | 0 |
| direction | to specify the direction of the step bar, `horizontal` and `vertical` are currently supported | string | `horizontal` |
-| progressDot | Steps with progress dot style, customize the progress dot by setting it to a function | Boolean or (iconDot, {index, status, title, description}) => ReactNode | false |
+| progressDot | Steps with progress dot style, customize the progress dot by setting it to a function | Boolean or (iconDot, {index, status, title, description}) => vNode | false |
| size | to specify the size of the step bar, `default` and `small` are currently supported | string | `default` |
| status | to specify the status of current step, can be set to one of the following values: `wait` `process` `finish` `error` | string | `process` |
diff --git a/components/steps/index.vue b/components/steps/index.vue
index e0feac949..34a9ea2ce 100644
--- a/components/steps/index.vue
+++ b/components/steps/index.vue
@@ -1,6 +1,6 @@