Blog

Insights, tutorials, and thoughts on web development and technology.

Vue CLI Practice Excercises

Vue CLI Practice Excercises

Here are the few exercises for you to gain more understanding of Vue CLI applications. Changing Default Port of a Vue CLI App. Install Bootstrap Library on Vue CLI Application Deploy a Vue...

Jun 17, 2020 · Tushar
How to Install Bootstrap library to Vue CLI Project

How to Install Bootstrap library to Vue CLI Project

In this short tutorial, we will go over how we can add the Twitter Bootstrap frontend library to your Vue Projects. Vue CLI is a very useful tool to get started with your Vue Projects. For the d...

Jun 17, 2020 · Tushar
Post Form Data to API using Axios in VueJS

Post Form Data to API using Axios in VueJS

In this post, we will cover how we can submit form data to an API using Axios in VueJS. Installation If you don't have Axios installed in your project you can get it installed using yarn or npm npm...

Jun 17, 2020 · Tushar
Using Axios to Consume Rest API in VueJS

Using Axios to Consume Rest API in VueJS

Although there are multiple ways once can consume a REST Api in VueJS like using javascript fetch API, vue resource, jquery's ajax api, However a third-party library named Axios is usually the most re...

Jun 16, 2020 · Tushar
Password Validation Indicator in VueJS

Password Validation Indicator in VueJS

In this exercise let's build a simple component in VueJS using which we can give real-time indication to the user if his password meets all the validation requirements. Usually on the sites, you mu...

Jun 13, 2020 · Tushar
Build Rock Papar Scissors Game in VueJS

Build Rock Papar Scissors Game in VueJS

In this post, I will be demonstrating and going over the steps of how to create Rock. Paper. Scissor Game in VueJS. Where one player is the user and another player is the computer. Let's understand...

Jun 06, 2020 · Tushar
Simple Tip Calculator in VueJS

Simple Tip Calculator in VueJS

A Tip Calculator is a calculator that calculates a tip based on the percentage of the total bill. Let's build a simple Tip Calculator using VueJS Here is the HTML <h2> Tip Calculator <...

Jun 04, 2020 · Tushar