Posts for Vue

Vue is Simple, minimal core with an incrementally adoptable stack that can handle apps of any scale.Vue is designed from the ground up to be incrementally adoptable.

Build a Crud application using Vue Composition API

The composition API is a new and optional way of creating and organizing components in a Vue 3 application. The Composition API allows reactive component logic to be defined more intuitively by allowing all the code for a specific feature (search, for example), to be grouped together. Using the Vue composition API will make your […]

May 28, 2020 in Tutorials & Vue

API Mocking with Vue and Mirage JS

Single-page applications (SPAs) continue to gain more and more popularity every day. As the complexity of these SPAs increases, the need for dynamic/realtime data increases as well. APIs provide a way to bridge the gap between the SPA and the backend. There are times, however, when the required API is not available or it’s just […]

May 4, 2020 in Tutorials & Vue

Build a text messaging app with Vuejs, Node and Twilio

In this article, we will build a text messaging app using Nodejs, Twilio, and Vuejs. Twilio is a cloud-based service that enables powerful communication between mobile devices, applications, services, and systems throughout the business in order to bridge the gap between conventional communication. Prerequisites Familiarity with HTML, CSS, and JavaScript (ES6+). Vs code or any […]

April 21, 2020 in Tutorials & Vue

Consuming Restful Data in a Vue application using Axios

In this article, you will learn how to Consume Restful Data in a Vue application using Axios by creating a simple Vue web application that keeps track of all the Corvid-19 cases around the world. Our App will consume data from Microsoft API that will provide us with all the information we need about the […]

March 31, 2020 in Vue

Build A Drawing App with Vuejs and Html5 Canvas

In this tutorial, we will be building a simple drawing app with Vuejs and Html5 Canvas. Basically the HTML <canvas> element is used to draw graphics on a web page. Vuejs is a progressive Javascript framework for building user interfaces. Here’s the demo of our app! Prerequisites Familiarity with HTML, CSS, and JavaScript (ES6+). Vs […]

March 21, 2020 in Vue

Getting started with Writing Test In Vue Applications

In this article, we will learn how to write test in vue using Jest as a test runner. So what is exactly is Jest?… Jest is a delightful JavaScript Testing Framework that focuses on simplification of unit testing. A unit test is a method that invokes another piece of code and checks the correctness of […]

March 15, 2020 in Vue
Anumadu
Anumadu wrote

Getting started with Vue & Apollo GraphQL

This tutorial is targeted at the Vue developer who wants to dive into Vue graphQL. You need a workable knowledge of Vue to follow along. Table of Content: what is graphQL What is Apollo Setting up graphQL server with node.js and Apollo server Installing Vue.js using vue CLI Installation and setup of Apollo client building […]

March 9, 2020 in GraphQl & Vue
Anumadu
Anumadu wrote

Building a Portfolio Website with Vue and Bootstrap

This tutorial is targeted at developers who know the basics of Bootstrap and Vue.js framework but need a practical example to properly grasp the above technologies. If you are an absolute beginner, I would suggest you take some absolute beginner crash courses before heading over to this. With that said, Let’s get started. Before we […]

February 28, 2020 in Tutorials & Vue
Anumadu
Anumadu wrote

Getting started with Vuex: A beginners guide

Introduction: This is a brief tutorial that is intended to bring an absolute beginner up to speed with Vuex. Previous knowledge of Vue.js is required to follow along. we hope to cover the following key factors by the end of the tutorial: What is Vue.js store/Vuex How Vuex works The Vuex store Working with state […]

February 25, 2020 in Tutorials & Vue

Rendering Lists in Vue

Web applications handle lists of data for various reasons: showing a list of registered users, checkout page with items to be purchased or a log of previous transactions. A list is such a common construct that it’s a good fit for an abstraction. Vue makes it convenient to render lists of data with a nice […]

February 24, 2020 in Tutorials & Vue

working and Using Vuejs mixins

Using Vuejs mixins is a way to re-use functionality across multiple components in your web application. This is a good idea if you have multiple components sharing the same functionalities. Vuejs Mixins can contain any component options and when used, they are combined with the component’s options. How to use mixins in Vue Firstly, you […]

January 21, 2020 in Tutorials & Vue

Animating between routes with route transitions in Vue

Working on a Vue.js application, there’s a high chance that components or items are going to be inserted, updated from the DOM. It’s always good practice to ease that process to obtain a great user experience. In this article, I’ll be giving a brief overview of the difference in making a Vue application smooth by […]

January 13, 2020 in Tutorials & Vue