Skip to content

Commit

Permalink
chore: fix the README
Browse files Browse the repository at this point in the history
  • Loading branch information
mmorainville committed Jul 8, 2020
1 parent ac06860 commit 161504a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -107,11 +107,11 @@ steps: [
{
target: '#v-step-0', // We're using document.querySelector() under the hood
content: `Discover <strong>Vue Tour</strong>!`,
before: type => new Promise(accept) {
// time-consuming UI/async operation here
return accept();
}
},
before: type => new Promise((resolve, reject) => {
// Time-consuming UI/async operation here
resolve('foo')
})
}
]
```

Expand Down

0 comments on commit 161504a

Please sign in to comment.