Introduction to Nuxt.js: The Framework for Universal Vue.js ApplicationsNuxt.js is a powerful, open-source framework built on top of Vue.js for creating universal applications. It simplifies the development of server-rendered Vue applications and static websites. Here's an overview to get you started with Nuxt.js and und...Jul 2, 2024·3 min read·24
VueJS part 10: Passing data to the componentsIntroduction Recently, I started learning VueJS, and this article is part of the series of my notes while learning it. In the previous parts, I created some simple components. However, there is much more to them than what I used so far. And one of th...Oct 31, 2023·3 min read·12
VueJS part 9: Creating components in the .vue filesIntroduction Recently, I started learning VueJS, and this article is part of the series of my notes while learning it. In the previous parts, I always used CDN to load Vue, until the last part where I finally created a project with CLI. This gave us ...Oct 25, 2023·4 min read·9
VueJS part 8: Creating the Vue app with CLIIntroduction Recently, I started learning VueJS, and this article is part of the series of my notes while learning it. In the previous parts, every time I used VueJS I loaded it from CDN and wrote all the code in a single JavaScript file. In this par...Oct 17, 2023·4 min read·12
VueJS part 7: Lifecycle methodsIntroduction Recently, I started learning VueJS, and this article is part of the series of my notes while learning it. Every application and component has its lifecycle, and quite often it happens that we need to do something during some specific sta...Oct 10, 2023·2 min read·11
VueJS part 6: Components introductionIntroduction Recently, I started learning VueJS, and this article is part of the series of my notes while learning it. Components are a very important part of Vue, and in this article, I am giving a brief introduction to what they are and how to use ...Oct 3, 2023·5 min read·11
VueJS part 5: Handling eventsIntroduction Recently, I started learning VueJS, and this article is part of the series of my notes while learning it. In this one, I am covering how to use event handlers in the Vue. On event directive Vue comes with a directive that helps us handle...Sep 26, 2023·5 min read·25