2023年3月17日

摘要: 问题一: Invalid attempt to spread non-iterable instance. In order to be iterable, non-array objects must have a [Symbol.iterator]() method. 解决办法:data-sou 阅读全文
posted @ 2023-03-17 09:28 Lyn小娜 阅读(98) 评论(0) 推荐(0)

2023年3月8日

摘要: 问题一:点击展开没反应 解决办法::expanded-row-keys.sync="expandedRowKeys"去掉即可 问题二:table css样式不能修改 解决办法: css样式类名前+ /deep/ /deep/ .ant-table-thead > tr > th,.ant-table 阅读全文
posted @ 2023-03-08 09:15 Lyn小娜 阅读(158) 评论(0) 推荐(0)

2023年3月1日

摘要: 删除NumberInfo中的scoped ,因为使用了antdv的css变量,加了scoped 导致获取不到 阅读全文
posted @ 2023-03-01 17:55 Lyn小娜 阅读(1882) 评论(0) 推荐(0)

2023年2月21日

摘要: https://blog.csdn.net/Tom_sensen/article/details/111171934 安装 npm install vue-print-nb --save 在main.js文件中注册 import Print from 'vue-print-nb' Vue.use(P 阅读全文
posted @ 2023-02-21 17:49 Lyn小娜 阅读(271) 评论(0) 推荐(0)

2023年2月20日

摘要: 项目来源:https://github.com/renrenio/renren-fast-vue/wiki/Getting-started 解决npm安装windows-build-tools时卡在Successfully installed Python 遇到的问题:npm install -g 阅读全文
posted @ 2023-02-20 13:34 Lyn小娜 阅读(91) 评论(0) 推荐(0)

2022年9月27日

摘要: align-content:flex-end; //当不折行的情况下,align- content(纵向对齐方式)是不生效的。 flex-wrap:wrap; //加上折行属性,align-content生效 flex 盒子上下左右居中 {display:flex; justify-content: 阅读全文
posted @ 2022-09-27 12:56 Lyn小娜 阅读(58) 评论(0) 推荐(0)

2022年9月20日

摘要: 右键-->全选-->复制,粘贴到Activation code中 获取最新code https://www.ajihuo.com/webstorm/4188.html 最新更新(2023/4/26更新) FDXL1Y2811-eyJsaWNlbnNlSWQiOiJGRFhMMVkyODExIiwib 阅读全文
posted @ 2022-09-20 16:51 Lyn小娜 阅读(626) 评论(0) 推荐(0)

2020年4月10日

摘要: 之前用ionic做了项目,学会了安卓打包,最近要做热更新,本来以为效果没出来,结果发现是我用的内网,哈哈哈哈,来来来,赶紧进入正题,把我的步骤分享给大家!!!! 1.在你的cordova项目下面添加cordova热更新插件 cordova plugin add cordova-hot-code-pu 阅读全文
posted @ 2020-04-10 17:02 Lyn小娜 阅读(640) 评论(0) 推荐(0)

2020年3月20日

摘要: 在使用ionic3做返回置顶的时候,发现里边用了fixed absolute等一些定位的内容时,scrollTo,scrollTop,scrollLeft就失效了,可以使用scrollIntoView(),例子如下: <ion-scroll #testScroll scrollY="true" [n 阅读全文
posted @ 2020-03-20 10:21 Lyn小娜 阅读(456) 评论(0) 推荐(0)

2020年3月9日

摘要: git clone 克隆地址 git branch -a //展示所有分支 git chekout 分支名称 git add . git commit -m"备注信息" git push //上传更新代码 阅读全文
posted @ 2020-03-09 16:43 Lyn小娜 阅读(144) 评论(0) 推荐(0)