In the project I'm currently working on, I have chosen to use Vue Material for the development of a single-page application. The approach I am taking follows a common trend in which a central "container" component is utilized to manage the shifting views based on routes.
While exploring the Vue Material website and its documentation, particularly in the docs section, I observed that the pages are animated using material design style transitions during navigation (such as the "fade/slideup" transition). However, I did not find any specific information about implementing these transitions in the documentation.
I am curious to know whether these transitions need to be manually implemented like in other typical Vue applications, or if they are already integrated into the Vue Material framework but require additional implementation steps within my app (for example, due to potential conflicts with Vue Router). Currently, there are no <transition>
tags in my code, as I have been following the material components' usage guidelines outlined in the documentation.
Any insights or guidance on this matter would be greatly appreciated. Thank you in advance.