Tags → #coding
-
用 eslint 和 prettier 让跨 IDE 协作更舒服
详解如何通过 ESLint 与 Prettier 解决跨 IDE(VSCode/WebStorm)协作中的代码格式化冲突,涵盖自动化插件安装及 Husky 提交检查配置。
-
Vue's asynchronous update mechanism
Deep dive into Vue's asynchronous update mechanism: understanding queueWatcher and the nextTick strategy. Learn how Vue batches data changes to minimize DOM manipulations and ensure smooth performance.
-
El mecanismo de actualización asíncrona de Vue.
Explora el mecanismo de actualización asíncrona de Vue: desde queueWatcher hasta nextTick. Aprende cómo Vue optimiza el rendimiento agrupando cambios en colas y cuándo acceder al DOM actualizado.
-
Vueの非同期更新メカニズム
Vue の非同期更新メカニズム(nextTick)を徹底解説:setter から queueWatcher、そして flushSchedulerQueue までのフローを辿ります。DOM 更新のタイミングとマイクロタスクの活用法を学びます。
-
Vue 异步更新机制深度解析
深入剖析 Vue 异步更新原理:从 setter 触发到 queueWatcher 入队,详述 flushSchedulerQueue 的执行逻辑。解析 nextTick 如何利用微任务/宏任务优化 DOM 渲染性能。
-
Prometheus 极速概览
Prometheus 监控系统极速概览:涵盖配置文件结构、Exporter 数据格式、PromQL 语法、Record/Alert 规则及 AlertManager 告警流程。
-
Zadig 前端调研
Zadig 开源交付平台前端调研:分析 zadig-portal 的代码结构(Vue+ElementUI)、本地启动流程及典型微服务案例构建配置。
-
How Does Vue's Reactivity Work
Deep dive into Vue's reactivity system: understanding the relationship between Dep, Watcher, and Observer. Learn how Vue tracks changes and updates the view automatically via getters and setters.