uniapp 苹果底部安全区域
摘要:bottom: env(safe-area-inset-bottom); 如果需要计算 bottom: calc(100rpx + env(safe-area-inset-bottom));
阅读全文
posted @
2022-05-31 17:38
双木之下藏倒影
阅读(571)
推荐(0)
uniapp 中input输入框限制输入
摘要:限制输入监听input的input事件 1.只允许输入数字 this.inputValue = this.inputValue.replace(/[^\d]/g, "") 2.只允许输入数字和小数点 this.inputValue = this.inputValue.replace(/[^\d.]/
阅读全文
posted @
2022-05-13 13:45
双木之下藏倒影
阅读(8560)
推荐(0)
sass-loader node-sass 安装失败解决方法
摘要:1.安装失败原因 版本过高导致。 2.解决办法锁定版本npm install sass-loader@7.3.1 --save-dev npm install node-sass@4.14.1 --save-dev
阅读全文
posted @
2022-05-02 11:27
双木之下藏倒影
阅读(593)
推荐(0)