Articles & Tutorials
for you to read...
- Adding Pagination to a Nuxt Blog
As your blog grows it will more than likely become necessary to paginate the listing page of articles. This post explains one way this can be achieved.
- Adding Social Media & SEO Meta Data Using Nuxt Content
Here is how to add social media and SEO meta data to your Nuxt project when using the content module.
- Radio Buttons VueJS
Here is a quick example how to add radio buttons on a form managed by VueJS.
- Forgot Password Using Firebase & VueJS
This tutorial walks through adding a forgot password page to the simple VueJS Firebase app we have been building.
- Email Verification Using Firebase & VueJS
This tutorial walks through adding email verification to the simple VueJS Firebase app we have been building.
- Authenticate Users Using Firebase & VueJS
In this tutorial we will work through building a simple VueJS app. It will use Firebase for authentication and allow users to sign-up and sign-in.
- How to Manage User State With Vuex and Firebase
This tutorial walks through adding Vuex to a simple VueJS Firebase app. We use Vuex to manage the logged in user state and display protected content.
- Adding a Sitemap Using Nuxt Content
Here is how to add a sitemap to your Nuxt project when using the content module.
- Lambda Expressions vs Anonymous Functions
When learning a functional programming style you will often come across the term Lambda Expressions or Lambda Functions. In simple terms they are just functions that can be used as data and therefore declared as a value. Let's explore a few examples.
- JavaScript typeof Number
Often you will need to check that you have a number before using it in your JavaScript, here's how.