03 2023 档案
摘要:Mac下升级ruby至最新版本 Mac自身的ruby 版本 2.x,通过ruby -v可以查看版本号。为更新到ruby的最新版本,可通过以下命令解决:brew updatebrew install ruby执行完命令后,ruby -v后其实还是原来的版本👌,这是因为环境变量没有配置。因此,还有一个
阅读全文
摘要:display: grid; grid-template-columns: repeat(auto-fill, 232px); grid-gap: 22px 16px; justify-content: center;
阅读全文
摘要:.left-menus-pup { position: fixed; left: 0; right: 0; bottom: 0; top: 188px; z-index: 300; animation-name: pup; /* 2、动画持续时间 */ animation-duration: 0.1
阅读全文
摘要:oninput="value=value.replace(/[^\d.]/g, '').replace(/\.{2,}/g, '.').replace('.', '$#$').replace(/\./g,'').replace('$#$', '.').replace(/^(\-)*(\d+)\.(\
阅读全文
摘要:vue3 直接用 <template> <div class="plantingTrees"> <ul class="shop"> <li v-for="item in items"> <span>{{ item.text }}</span> <span>{{ item.price }}</span
阅读全文