We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With Vue Router we can set page transitions for a rich user experience using the Vue Transition component.
In Vulmix (since 0.6.1-beta), you can set page transitions by defining the transition name in vulmix.config.ts:
0.6.1-beta
vulmix.config.ts
export default defineVulmixConfig({ transition: { name: 'slide-fade', } })
And then, creating your own transition in CSS:
.slide-fade-enter-active, .slide-fade-leave-active { transition: 0.2s ease-in-out; } .slide-fade-enter-from, .slide-fade-leave-to { opacity: 0; transform: translateX(10px); }
The text was updated successfully, but these errors were encountered:
Completed in 39dd5d3
Sorry, something went wrong.
ojvribeiro
Successfully merging a pull request may close this issue.
With Vue Router we can set page transitions for a rich user experience using the Vue Transition component.
In Vulmix (since
0.6.1-beta
), you can set page transitions by defining the transition name invulmix.config.ts
:And then, creating your own transition in CSS:
The text was updated successfully, but these errors were encountered: