© 2023 Hashnode
#nuxt
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…
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…
This guide will walk you through how to use the Google Sheets API as a database and pair it with a Nuxt.js 3 application. This post is inspired by a video made by Fireship.io. Jeff does a nice job exp…
Hi Vue developers! this is the very first release after Nuxt becomes stable. The latest release of Nuxt, version 3.1.0, brings a host of new features and improvements to the framework. This release in…
We all know that Vuex is a very powerful state management system when used with VueJS. And when you are using it with NuxtJS, it’s even more fun to use. But sometimes it is a little confusing. Mainly …
https://www.youtube.com/watch?v=TmgIylXsLuE Nuxt.js version 3 introduces three main rendering modes: Server-Side Rendering (SSR): In this mode, Nuxt generates the HTML, CSS, and JavaScript on the f…
Let's build a simple filter with Nuxt 3 and the Composition API. We will also use tailwind and daisyUI for the styling. In the end, we should have something like this Creating the Nuxt 3 Project Firs…
Let's create a very simple counter animation with Nuxt3 and the Composition API. At the end of this post and with a few lines of code we should have something like this: Nuxt 3 - Project First, you n…
Nuxt.js is a free and open-source JavaScript framework based on Vue.js that helps you develop modern web applications using SSR (server-side rendering) which provides a faster load, better SEO (search…
https://www.youtube.com/watch?v=PhuJE0ayD6A Middleware in Nuxt.js allows you to define custom functions that can be run before rendering either a specific page or layout. These functions can be used…