Posts for Deven

Deven is an Entrepreneur, and Full-stack developer, Constantly learning and experiencing new things. He currently runs CodeSource.io and Dunebook.com
Deven
Deven wrote

How to fix vue this relative module was not found: in VueJs

In this article, you will learn about how to fix vue this relative module was not found: in VueJs. “This relative module was not found:” facing this error is common in VueJs. Almost every programmer has faced this problem once in a time. Especially, if you are a beginner and just jump into VueJs. I […]

December 23, 2021 in Errors solved & Vue
Deven
Deven wrote

How to fix vue warn cannot find element

In this article, you are going to learn about How to fix vue warn cannot find element. “vue warn cannot find element” is a common error in VueJs. If you are an absolute beginner and try to print a hello world message but get yourself stuck with this error then this article is for you. […]

December 23, 2021 in Errors solved
Deven
Deven wrote

How to get selected value using on change in VueJs

In this article, you will learn about how to get a selected value using on change in VueJS. In VueJS, you can get a selected value. To do so you need to use v-on:change directives. This is provided by VueJs and you can use it instead of using v-model. Another way of declaring this directive […]

December 23, 2021 in Code examples & Vue
Deven
Deven wrote

How to use img src in VueJs

In this article, you are going to learn about how to use img src in VueJs. Vue is a modern JavaScript framework that is widely used in building user interfaces and progressive web applications. With Vue, you can do lots of eye-catching things but here I will show you how you can work with img […]

December 23, 2021 in Code examples & Vue
Deven
Deven wrote

Vue export default vs Vue new

In this article, you will learn about the difference between Vue export default and Vue new. Vue is a progressive JavaScript framework used to build web interfaces and one-page applications. To work with Vue you need to declare it. Let’s see the ways of declaring it: Using Vue new: You can create a Vue instance […]

December 15, 2021 in Code examples
Deven
Deven wrote

Learn How to install Vue by using CDN

In this article, you are going to learn about how to install Vue by using CDN. Vue is a lightweight front-end JavaScript framework that is widely used for building Single Page Applications. To work with Vue, you can install it in many ways, Using CDN(Content Delivery Network) is one of them. You need to use […]

December 15, 2021 in Code examples & Vue
Deven
Deven wrote

How to fix vue is not defined

In this article, you are going to learn about how to fix Uncaught ReferenceError: Vue is not defined. “Uncaught ReferenceError: Vue is not defined” is a common problem and if you are an absolute beginner you will face this problem once in your programming career. This error may occur for a few reasons. I will […]

December 15, 2021 in Errors solved
Deven
Deven wrote

How to “fix cannot read property of undefined” in Vue

In this article, you will learn about how to “fix cannot read property of undefined” in Vue. “Cannot read property of undefined” in Vue is a common error. It can occur for many reasons. Let me share my experience with you. Recently, I was working on a Vue project where I added a toggled functionality. […]

December 15, 2021 in Errors solved
Deven
Deven wrote

Learn How to make JSON POST request in GoLang

In this article, you will learn about how to make JSON POST requests in the Go Language. JSON refers to the JavaScript Object Notation which is widely used in web development to transmit data. It is lightweight and human-readable. In the Go language, you can make a JSON POST request but to do so you […]

December 14, 2021 in Code examples & GoLang
Deven
Deven wrote

Learn How to read input from STDIN in Golang

In this article, you are going to learn about how to read input from STDIN in the Go language. In many programming languages, you can read data from a console and see the output. The Go language is not out of that. You can also read input from STDIN. To do so, you need to […]

December 14, 2021 in Code examples & GoLang
Deven
Deven wrote

Learn How to compare slices in Golang

In this article, you will learn about how to compare slices in the Go language. In Go language, slice stores a similar type of element which is a sequence of variable length. It is similar to an array but the main difference is the size of a slice can be resized on the other hand […]

December 14, 2021 in Code examples & GoLang
Deven
Deven wrote

Learn How to print in console in Golang

In this article, you are going to learn about how to print in console in the Go language. Print data in the console is a part and parcel of a programmer’s life. While writing code for a specific program, you often need to see whether the code is running perfectly or not before launching it […]

December 14, 2021 in Code examples & GoLang
Deven
Deven wrote

Learn How to do typecasting in Golang

In this article, you are going to learn about how to do typecasting in the Go language. Typecasting refers to the term of assigning the value of one data type to another. It is also known as type conversion. You can generally do type conversion in two ways – implicit type conversion and explicit type […]

December 14, 2021 in Code examples
Deven
Deven wrote

Learn How to use list in Golang

In this article, you will learn about how to use the list in the Go language. In the Go language, lists are referred to as linked lists which is one of the most important data structures used today. If you want to use the list in the Go language you need to import the list […]

December 14, 2021 in Code examples