docs(Steps): fix typo of basic usage (#8512)

* fix: typo of "Steps" docs

* fix: typo of "Steps" docs
This commit is contained in:
炽翎 2021-04-12 19:07:05 +08:00 committed by GitHub
parent fd25328e5c
commit 11e641c88e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ app.use(Steps);
import { ref } from 'vue';
export default {
steup() {
setup() {
const active = ref(1);
return { active };
},

View File

@ -36,7 +36,7 @@ app.use(Steps);
import { ref } from 'vue';
export default {
steup() {
setup() {
const active = ref(1);
return { active };
},