#Vuejs
Embedding a Vuetify Frontend into a Go Web Server
Vuetify adds a Material Design look to Vue apps, and Go 1.25’s embed package lets you ship static assets in a single binary. Here you’ll see how to serve a Vuetify SPA from Go using net/http, Gin and Fiber, with pros and cons of each method
Mohamed Nossirat
Embedding a Vuetify Frontend into a Go Web Server
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
Mohamed Nossirat
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
Mohamed Nossirat
Integrating VueJS 2 into a Django