2023年3月29日

摘要: 解决办法 this.editor.customConfig.menus中注释掉img就可以了 <template> <div :class="prefixCls"> <div ref="editor" class="editor-wrapper" ></div> </div></template>< 阅读全文
posted @ 2023-03-29 10:09 Lyn小娜 阅读(514) 评论(0) 推荐(0) 编辑

2023年3月20日

摘要: 阅读全文
posted @ 2023-03-20 11:16 Lyn小娜 阅读(22) 评论(0) 推荐(0) 编辑
 
摘要: ant-design-vue table td添加样式 columns 中添加className类名 const columns = [ { title: '执行', dataIndex: 'carryOut', key: 'carryOut', className: 'checkbox-input 阅读全文
posted @ 2023-03-20 11:01 Lyn小娜 阅读(227) 评论(0) 推荐(0) 编辑

2023年3月17日

摘要: 1、主进程background.js文件 const winURL = process.env.NODE_ENV 'development' ? `http://localhost:8080` : `file://${__dirname}/index.html` //事件名 openWindow是事 阅读全文
posted @ 2023-03-17 09:31 Lyn小娜 阅读(331) 评论(0) 推荐(0) 编辑
 
摘要: 问题一: 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小娜 阅读(69) 评论(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小娜 阅读(103) 评论(0) 推荐(0) 编辑

2023年3月1日

摘要: 删除NumberInfo中的scoped ,因为使用了antdv的css变量,加了scoped 导致获取不到 阅读全文
posted @ 2023-03-01 17:55 Lyn小娜 阅读(1259) 评论(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小娜 阅读(213) 评论(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小娜 阅读(72) 评论(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小娜 阅读(45) 评论(0) 推荐(0) 编辑