© 2023 Hashnode
#vuejs
Introduction With the upgrade from Vue 2 to Vue 3 if you want to build an app in Vue.js and be able to embed the google maps feature into your app; this is a tutorial you would want to follow. Setup y…
Vue.js is a popular JavaScript framework for building user interfaces. One of its many powerful features is the ability to reference elements in the DOM and access their properties. This is made possi…
Hi👋🏽, so I have been coding a lot in Vue lately and I have been using Vue composition API more often. here are the few things that stood out to me. Introduction Vue Option and Composition API are two different approaches for setting up co…
Data binding is a process in which a data source (such as a model or a component state) is linked to a view (such as a template or a component) in such a way that changes to the data source are automatically reflected in the view. It is a w…
Testing is crucial to ensure that our code is working as expected and maintaining the stability of the application. When working with Vue.js or any other js framework, Jest is an excellent choice for …
Building a slider in Vue.js 3 with the Splide.js library is a great way to enhance the user experience on your website. Splide.js is a responsive, lightweight, and fast slider library that allows you …
In this post, we are going to learn about Nuxt, one of if not “the” most popular Vue.js frameworks. To be specific, we are going to learn about Nuxt 3 - its latest release codenamed "Mount Hope". As s…
Introduction In this second part of “Introduction to Nuxt 3” we are going to build a Movie app where we can query the “The Movies Database” API. You can also follow along by watching the video below: …
What's to create a beautiful Sign In page using the quasar framework? Don't worry I got your back. <q-layout view="lHh Lpr lFf"> <q-page-container> <q-page class="flex flex-center bg-grey-2"…
What is Nuxt and why you should use it? Nuxt is what’s known as a “meta framework”. Basically, it’s a framework built on top of another framework. Abstraction Inception. Nuxt is built on top of Vue.js…