How to make a function globally available in VueJS? – issue

Problem statement could be: How to make a function globally available in Vuejs across components. How to define a function in Vuejs that I can access from any other Vue Component. How to define and access a function across component. So, In Vue there is inbuilt method that you can use to define your methods … Read more

How to save Vuex State data into localStorage? Issue

Problem statement could be: How to preserve Vuex state data in VueJS on page refresh. How to save my vuex state data in localStorage. How to not lose my state data in Vuex whenever I reload my page – VueJS. Save Vuex state data into your localStorage: I will not waste your too much time … Read more

Create a Chrome Extension with Vue.Js

Hello folks, I hope you all are doing good. In this article, I’m going to show you how you can create Chrome Extension with Vue.JS framework. A chrome extension can help you to enhance your browser experience. Usually, you can build a Chrome Extension just by using Vanilla JS, HTML and CSS by following Google … Read more

Install WordPress website on DigitalOcean Using NGINX

Deploy wordpress on digital Oceanit

Hello reader, In this article I will show you how can install wordpress website DigitalOcean with help of NGINX server. So, basically DigtalOcean is a cloud hosting platform, where we will host our WordPress website with NGINX server. There are multiple reasons why you should choose Cloud hosting platform to host your wordpress and web … Read more

How to create and register the component in VueJS 3

VueJS 3 Component

Hello coders, In this article, I’m going to show you that how you can create components in VueJS 3. But before that, let’s talk a little bit about component in VueJS 3. What is a component? Component is kind reusable code and that you can use throughout you Vue Application. And each component contains Its … Read more

How to Install And Use VueX in VueJS 3 (GUIDE)

VueX in VueJS 3

Hello coders, In this article I’m going to show you that how you can install VueX and use it inside your VueJS 3.0 project. So, we’re going to install Vuex in latest version VueJS, which is Vue.JS 3.0. Before that, let’s discuss first what is VueX and Why you should use it. What is Vuex? … Read more

How to setup Vue Router in VueJS 3 (GUIDE)

VueRouter is VueJS3

Hi coders, In this article, I’m going to explain you how you can setup Vue Router in Vuejs 3 version. I’ll explain step by step process from installation to usage of routers. Vue Router in VueJS 3.0: Let me first explain you that what is Router and why one should use it in their application. … Read more

Authentication with django-allauth in Django Apps

Django AllAuth

Hi coders, In this article, I will show you how to setup Authentication with help of Django-allauth package in your Django App. We’re not going to use social authentication in this article. We will only see how to set up a normal username and password authentication with help of django-allauth. So, Let’s start this guide. … Read more