Most VueJS developers are extremely familiar with computed properties. They’re a great way to design more readable code and declutter your template. However, in certain cases, there’s a better solution that can make even more reusable code: VueJS Filters. In this article, we’ll be going …
VueJS Dynamic Components can be an extremely convenient way to make your code both more readable and adaptable. They can simplify several conditional components (ones toggled using v-if, v-else-if, v-else) into just one line of code. In short, they allow you to toggle between different …
Adding transitions to your Vue app is a simple way to make your project feel more professional. By improving your user experience, you can keep more people on your site and boost your conversion rate. It just takes a little bit of setup for a …
When working with dynamic components, Vue recreates new instances of components when you switch the value of the :is directive. While it’s useful in most cases, there are times when we want to save the state of a hidden element. Meet Vue keep-alive components. Depending …