I want to share this tip about the technique to use when you want to type the parameters of methods that depend on third-party libraries. Let’s dive into it.
Sometimes, you use third-party libraries who develop useful components. It was the case for me with VeeValidate. But the names of the component may not suit you or your linter. Let’s see how solve either of these issues.
A best practice when the current route change is to make the router view component unique using the key property. As described in the official documentation, the key special attribute is primarily used as a hint for Vue’s virtual DOM algorithm to identify vnodes when diffing the new list of nodes against the old list. Let’s see how it can be used with vue-router.
Asynchronous operations are key to smooth and user-friendly applications. In this article, I’ll share what I’ve learned from completing the masterclass on Vueschool.io where I had the opportunity to really grasp the concept.
In SEO, it is good practice to include a canonical link in the head element of each page. Using Hugo static site generator, how do you do it? Let's dive right in.