State Management Patterns Across Vue and Flutter
What Is Application State?
Application state is any data that lives only while the program is running—values that may never reach a database or disk but still need to be shared, updated, and kept consistent across screens or components.
From Props Drilling to Global Stores
The simplest way to move data is through the component tree:
Downward f ...
Posted on Tue, 09 Jun 2026 16:53:31 +0000 by blackwidow
Building a GVA-Based Admin System with Gin, Vue, and JWT
Login Handling with Sestion and JWT
Session-based authentication is required to restrict page access to logged-in users only. The Gin framework provides session middleware via github.com/gin-contrib/sessions.
import "github.com/gin-contrib/sessions"
rootRouter.GET("/login", func(c *gin.Context) {
session := sessions.Def ...
Posted on Tue, 02 Jun 2026 18:38:17 +0000 by jexx
Implementing an Enterprise Management System with Vue 3 and TypeScript
1. Routing Configuration1.1 Router Instance SetupInitialize the Vue Router using the createRouter and createWebHistory functions. Define the routing mode and default scroll behavior to reset the position on navigation.import { createRouter, createWebHistory } from 'vue-router'
import { staticRoutes } from './routes'
const appRouter = createRou ...
Posted on Fri, 15 May 2026 14:35:16 +0000 by astronaut