职业生涯所遇坑洼
当安装依赖存在报错,最好的办法就是屏蔽错误,眼不见心不烦~yarn config set ignorengines true
yarn config set ignorengines true
element input number 类型无法拦截 特殊符号。onKeypress="return (/[\d]/.test(String.fromCharCode(event.keyCode || event.which))) || event.which === 8"
onKeypress="return (/[\d]/.test(String.fromCharCode(event.keyCode || event.which))) || event.which === 8"
vue v-calendar 组件 :masks="{ title: 'MMM YYYY',weekdays:'WWW' }" 添加这一条后,会加大计算量,若显示月份超过一月,则会卡顿,慎用!
v-calendar
:masks="{ title: 'MMM YYYY',weekdays:'WWW' }"
&::-webkit-scrollbar { display: none;} 隐藏滚动条
&::-webkit-scrollbar { display: none;}
vue 自定义组件命名使用<xxx-xxx>时 ref 实例将失效,应使用驼峰命名
微信小程序IOS 页面底部留出安全间距padding-bottom: constant(safe-area-inset-bottom); 和padding-bottom: env(safe-area-inset-bottom);
padding-bottom: constant(safe-area-inset-bottom);
padding-bottom: env(safe-area-inset-bottom);
微信小程序 IOS 端 日期转换 不支持 链接符 YYYY-MM-DD 因此 需要使用 YYYY/MM/DD
uniapp 新增页面后 需要重新编译 新页面才会生效
node 版本为v14.18.0 完美解决 npm install 安装出现 python 指令错误问题
react native borderStyle 虚线 需要 与 borderRadius 一起 使用,否则不生效
当安装依赖存在报错,最好的办法就是屏蔽错误,眼不见心不烦~
yarn config set ignorengines true
element input number 类型无法拦截 特殊符号。
onKeypress="return (/[\d]/.test(String.fromCharCode(event.keyCode || event.which))) || event.which === 8"
vue
v-calendar
组件:masks="{ title: 'MMM YYYY',weekdays:'WWW' }"
添加这一条后,会加大计算量,若显示月份超过一月,则会卡顿,慎用!&::-webkit-scrollbar { display: none;}
隐藏滚动条vue 自定义组件命名使用<xxx-xxx>时 ref 实例将失效,应使用驼峰命名
微信小程序IOS 页面底部留出安全间距
padding-bottom: constant(safe-area-inset-bottom);
和padding-bottom: env(safe-area-inset-bottom);
微信小程序 IOS 端 日期转换 不支持 链接符 YYYY-MM-DD 因此 需要使用 YYYY/MM/DD
uniapp 新增页面后 需要重新编译 新页面才会生效
node 版本为v14.18.0 完美解决 npm install 安装出现 python 指令错误问题
react native borderStyle 虚线 需要 与 borderRadius 一起 使用,否则不生效