alexandreDavid / vue3-tour

Vue-tour in Vue3
MIT License
49 stars 21 forks source link

Translate button text #9

Closed KelvynCarbone closed 2 years ago

KelvynCarbone commented 2 years ago

How change buttons text?

alexandreDavid commented 2 years ago

There is a prop options in the VTour which is an object. Inside, there is a labels property. Free to you to change the default values.

  labels: {
    buttonSkip: 'Skip tour',
    buttonPrevious: 'Previous',
    buttonNext: 'Next',
    buttonStop: 'Finish'
  }