Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ npm install vue-stepper --save
| Properties | Type | Values |
| :--------------- | :------- | :--------- |
| `steps` | Array of Objects | Each object is a step that will be included in the stepper |
| `locale` | String | Default: `en`. Current options: `en`, `es`, `pt`, `ja`, `he`, `cn`, `ru` , `ar`. |
| `locale` | String | Default: `en`. Current options: `en`, `es`, `pt`, `ja`, `he`, `cn`, `ru` , `ar`, `nl`, `sv`, `dk`. |
| `top-buttons` | Boolean | Default: `false`. If `true` buttons on the header, at the start and the end of the steps, will be shown for better user experience. |
| `keep-alive` | Boolean | Default: `true`. If `true` step components won't be destroy in each step change, bue if `false` they will. |
| `reset` | Boolean | Default: `false`. If `true` the steps will be reset |
Expand Down
5 changes: 5 additions & 0 deletions src/Translations.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,10 @@ export default {
next: 'Nästa',
back: 'Tillbaka',
finish: 'Skicka'
},
dk: {
next: 'Næste',
back: 'Tilbage',
finish: 'Afslut'
}
}