diff --git a/components/steps/__tests__/__snapshots__/demo.test.js.snap b/components/steps/__tests__/__snapshots__/demo.test.js.snap index 02a05d4a6..295fcf17a 100644 --- a/components/steps/__tests__/__snapshots__/demo.test.js.snap +++ b/components/steps/__tests__/__snapshots__/demo.test.js.snap @@ -182,7 +182,7 @@ exports[`renders ./components/steps/demo/error.vue correctly 1`] = `
-
In Progress +
In Process
This is a description.
@@ -1090,7 +1090,7 @@ exports[`renders ./components/steps/demo/simple.vue correctly 1`] = `
Finished
-
This is a description.
+
This is a description.
diff --git a/components/steps/demo/customized-progress-dot.vue b/components/steps/demo/customized-progress-dot.vue index 0378a39a7..64554bc28 100644 --- a/components/steps/demo/customized-progress-dot.vue +++ b/components/steps/demo/customized-progress-dot.vue @@ -54,11 +54,11 @@ import { defineComponent, ref } from 'vue'; export default defineComponent({ setup() { - const current = ref(0); + const current = ref(1); return { current, - description: 'This is a description.', + description: 'You can hover on the dot.', }; }, }); diff --git a/components/steps/demo/error.vue b/components/steps/demo/error.vue index 8e688900e..0b8c8c045 100644 --- a/components/steps/demo/error.vue +++ b/components/steps/demo/error.vue @@ -16,7 +16,7 @@ By using `status` of `Steps`, you can specify the state for current step.