- 博客(5)
- 收藏
- 关注
原创 vue打印功能
// main.js//引入插件import Vue from 'vue'import VuePrinter from 'vue-dom-printer'<div class="qrcode" ref="qrCodeDiv"></div>//按钮<el-button type="primary" @click="print">打印</el-button>print(){ this.dialogVisible = fals.
2022-04-28 14:33:02 269
原创 Vue——前端生成二维码
npm 1 npminstall--save qrcodejs2 import 1 importQRCode from'qrcodejs2' 使用<div class="qrcode" ref="qrCodeUrl"></div><script>methods: { creatQrCode() { var qrcode = new QR...
2022-04-27 11:44:23 198
原创 预览对话框
预览按钮(点击弹出对话框页面)<el-col :span="1.5"> <el-button :disabled="single" type="text" @click="dialogVisible = true">预览</el-button> <el-dialog title="提示" :visible.sync="dialogVisible" width="30%" @opened="open...
2022-04-27 11:34:46 144
原创 vue中 =与===的使用
var id = this.ids[0];var list = this.qrCodeList;var selecttem = list.find(e=>e.qrCodeId===id);//最初写的是qrCodeId=id=== 用于(严格)比较、判断两者(严格)相等,不会进行自动转换,要求进行比较的操作数必须类型一致,不一致时返回flase在vue中使用===,避免出现取值不正确因为最初使用的是=,所以取得的数据不正确...
2022-04-27 11:30:30 666
原创 springboot项目启动异常 - required a single bean, but 2 were found
问题描述springboot+mybatis,编写接口及实现类,并使用@Autowired注入controller, 启动异常:required a single bean, but 2 were found错误分析@Autowired默认按照类型注入,根据提示,我的项目中这个类型的bean有两个,因此无法自动注入。错误信息也给出了解决的办法:1.把其中一个bean加上@Primary注解,就可以作为默认使用,2.在注入的属性添加@Qualifier指定beanName,以明确使用哪一个
2022-04-23 19:02:09 3230
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人