Managing routes is an essential feature for most SPAs. With the new Vue Router in alpha stages, we can already start seeing how it works in Vue3.
watchEffect is one of the ways to track reactive dependencies in Vue3. We write a method with reactive properties, and when one updates, our method triggers.
Animations are a great way to give site visitors a better user experience. Luckily for developers, VueJS animations take just minutes to set up.
Vue event handling is a necessary aspect of every Vue project. It’s used to capture user input, share data, and so many other creative ways. In this article, I’ll be …