Blog

Vue & Vuetify Composable Confirm Dialogs

Create reusable confirm dialogs in Vue using Vuetify’s dialog component. The article shows a Dialog.vue component and a useDialog composable to programmatically trigger confirm/cancel prompts from anywhere in your app

Vue & Vuetify Composable Confirm Dialogs

Integrating VueJS 2 into a Django

Integrating Vue into a Django project doesn’t require heavy tooling. This piece outlines a strategy where the Vue dev server handles local development while Django serves the built files in production, enabling gradual migration from a monolith to a microservice

Integrating VueJS 2 into a Django

Django Rest Framework rich related serializer

Readable API responses shouldn’t compromise write operations. This article introduces a custom serializer field derived from DRF’s PrimaryKeyRelatedField that returns nested objects for reads while accepting primary keys for writes, yielding cleaner responses without sacrificing flexibility.

Django Rest Framework rich related serializer