All Articles
↓
I'm Certified Vue.js Developer
•10/11/2024•3 min readOn October 4th, I have successfuly passed Vue.js Certification.
My certificate number is CMVD-004479...
Welcome Prisma Monorepo!
•3/25/2024•12 min readOn my simple projects I'm using Prisma for querying database. My current project is set of web appli...
Adding target="_blank" to all links in dynamically loaded content
•3/19/2024•8 min readOn this website I'm using Hygraph as CMS for my articles and via GraphQL it is loaded to the Nuxt we...
Two types of composables
•3/11/2024•7 min readHere I'm going to describe how I see the composables in Vue apps.
There are two types of composables...
Passing null to props in Vue (with Typescript)
•2/25/2024•5 min readAs I'm going through numerous forums and reddit, I see this as a pretty common question:
How to pas...
Slot content is rendered at the page end
•2/23/2024•7 min readSlots are besides props another the way
how to pass data to a child component. Imagine it as a props...
Two ways of defining props in Typescript
•2/18/2024•6 min readProps in Vue are a basic concept of passing values to component from outside/parent. It is one of th...
setInterval on Nuxt server
•2/18/2024•5 min readIn javascript setInterval function is used to repeatedly call a function or execute a code snippet, ...