Jiří ProcházkaPortfolio

Jiří ProcházkaArticles

tag: #vue

Loading Data with Composables in Vue 3 - Part II.

9/3/202525 min read
In the previous article, I showed you a simple pattern for loading data with Vue 3 composables. It c...

Loading Data with Composables in Vue 3

8/27/202520 min read
In Vue 3, you’ll often need to fetch data — and the cleanest way to do it is with composables. Inste...

A Scalable Architecture for Large Vue 3 Projects

7/24/202522 min read
When I started working on large Vue 3 projects, I often found myself struggling with how to structur...

I'm Certified Vue.js Developer

10/11/20243 min read
On October 4th, I have successfuly passed Vue.js Certification. My certificate number is CMVD-004479...

Adding target="_blank" to all links in dynamically loaded content

3/19/20248 min read
On 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/20247 min read
Here 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/20245 min read
As 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/20247 min read
Slots 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/20246 min read
Props in Vue are a basic concept of passing values to component from outside/parent. It is one of th...