稍等一小会儿就好啦~

摘要: Vue3中响应式模块是如何工作的呢? 比如三个属性:价格price,数量quantity ,总价格total 。 let price = 5 let quantity = 2 let total = price * quantity 我们想要做到响应式,即更新price 时,网页上的price 随之 阅读全文
posted @ 2021-10-16 12:16 LuJT 阅读(477) 评论(0) 推荐(0)
摘要: Vue模块组成 以一个简单Vue组件从创建到渲染到web页面的过程,来看Vue的工作机制。 Vue共有三个核心模块,分别是: Vue Modules 名称 Reactive Module 响应模块 Compiler Module 编译模块 Renderer Module 渲染模块 其中渲染模块分为三 阅读全文
posted @ 2021-10-16 01:43 LuJT 阅读(250) 评论(0) 推荐(0)