const a = 7.55; console.log(a.toFixed(1)) // 7.5 比如上面这代码,如果作为四舍五入计算的话,就会出现遇到5不进位的问题 具体原因可以参考这篇文章 js - tofixed精度丢失问题 附上上面文章的解决方案的ts版(重写Number.prototype.toFixed) /** * 重写toFixed…
keep-alive的子元素必须是component或者<router-view/> 否则会不生效,会出现奇奇怪怪的问题,尤其是有echarts的页面 <router-view v-slot="{ Component, route }"> <transition name="fade-slide" mode="out-in"…