Implementing Named Slots in React With Child Type InspectionReact is deliberately minimal. It gives you components, props, and children while leaving structural composition patterns up to you. One pattern that doesn't exist natively but comes up constantly in Sep 14, 2026·7 min read·1
VueJS part 11: Sending data from component to parentIntroduction Recently, I started learning VueJS, and this article is part of the series of my notes while learning it. In the last post, I covered how to pass the data to the component. This post will cover how to send data from the component to the ...Nov 10, 2023·2 min read·16
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