We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e487ced commit 7c0d36cCopy full SHA for 7c0d36c
docs/component/steps.md
@@ -37,6 +37,15 @@
37
<wd-step title="步骤2" description="登录账号并绑定手机" />
38
<wd-step title="步骤3" description="完善个人信息" />
39
</wd-steps>
40
+<wd-button size="small" @click="nextStep">下一步</wd-button>
41
+```
42
+```ts
43
+const active = ref<number>(0)
44
+
45
+function nextStep() {
46
+ active.value = active.value + 1
47
+}
48
49
```
50
51
## 修改图标
0 commit comments