11 2023 档案
摘要:<link rel="stylesheet/less" type="text/css" href="styles.less" /> <script src="https://cdn.jsdelivr.net/npm/less@4" ></script> 变量(Variables) 原生已支持 --前
阅读全文
摘要:linear-gradient() 线性渐变 /* 渐变轴为 45 度,从蓝色渐变到红色 */ linear-gradient(45deg, blue, red); /* 从右下到左上、从蓝色渐变到红色 */ linear-gradient(to left top, blue, red); /* t
阅读全文
摘要:双向数据绑定方法 vue2 Object.definePropertie() vue3 Proxy VDOM 性能瓶颈突破 做了静态标记,静态内容不会去再对比 通过位运算对比得出其的静态标记情况 Fragments 允许组件多个根节点 vue3 会虚拟一个根节点,但实际不会渲染虚拟的节点 Tree-
阅读全文
摘要:问题的出现 存储 计算机不可能存储无限长二进制数,因此必然发生截取。 0.2.toString(2) // '0.001100110011001100110011001100110011001100110011001101' 查看存储精度 0.2.toPrecision(100) // '0.200
阅读全文