Vue Tour is a lightweight, simple and customizable guided tour plugin for use with Vue.js. It provides a quick and easy way to guide your users through your application.
onFinish callback is never be called after finish the tour version 2.0.0
I think your workaround is the solution: maintaining a single computed that returns your steps.
Else, Vue Tour cannot determine which step is the last.
Do you have some code to show us?
@nuxtjs/tailwindcss: 5.0.3 nuxt: 2.15.8
Set exposeConfig
to true
in nuxt.config.js
export default {
tailwindcss: {
exposeConfig: true
}
}
Import theme
from configuration in component.
import { theme } from '#tailwind-config'
Expecting theme
to be defined.
theme
is undefined.
When importing the full configuration, I can get the theme
field.