034:vue项目利用qrcodejs2生成二维码示例-LMLPHP

第034个


专栏目标

在vue和element UI联合技术栈的操控下,本专栏提供行之有效的源代码示例和信息点介绍,做到灵活运用。

需求背景

在vue项目开发中,有时候我们需要自己生成二维码来达到目的,这个示例中,我们用qrcodejs2的这个插件来实现这个功能。

示例效果

034:vue项目利用qrcodejs2生成二维码示例-LMLPHP

示例源代码(共70行)

/*
* @Author: 大剑师兰特(xiaozhuanlan),还是大剑师兰特(CSDN)
* @此源代码版权归大剑师兰特所有,可供学习或商业项目中借鉴,未经授权,不得重复地发表到博客、论坛,问答,git等公共空间或网站中。
* @Email: 2909222303@qq.com
* @weixin: gis-dajianshi
* @First published in CSDN
* @First published time: 2022-09-15
*/
<template>
	<div class="container">
		<div class="top">
			<h3>生成二维码</h3>
			<div class="author">大剑师兰特, 还是大剑师兰特,gis-dajianshi</div>
		</div>
		<h4>
			<el-button type="primary" @click="showQRCode()"> 点击生成二维码 </el-button>
		</h4>
		<div class="qrcode2" ref="dajianshi"></div>
	</div>
</template>
<script>
	import QRCode from 'qrcodejs2'  
	export default {
		data() {
			return {

			}
		},
		methods: {
			showQRCode() {
				let url = 'https://dajianshi.blog.csdn.net/' ||window.location.href;
				var qrcode = new QRCode(this.$refs.dajianshi, {
					text: url,
					width: 200,
					height: 200,
					colorDark: '#000000',
					colorLight: '#ffffff',
					correctLevel: QRCode.CorrectLevel.H
				});
			}
		},
	}
</script>
<style scoped>
	.container {
		width: 1000px;
		height: 580px;
		margin: 50px auto;
		border: 1px solid green;
		position: relative;
	}

	.top {
		margin: 0 auto 30px;
		padding: 10px 0;
		background: mediumpurple;
		color: #fff;
	}
   .qrcode2{ width: 200px; height: 200px; margin:50px auto 0; } 

</style>


安装依赖

API

核心方法

			showQRCode() {
				let url = 'https://dajianshi.blog.csdn.net/' ||window.location.href;
				var qrcode = new QRCode(this.$refs.dajianshi, {
					text: url,
					width: 200,
					height: 200,
					colorDark: '#000000',
					colorLight: '#ffffff',
					correctLevel: QRCode.CorrectLevel.H
				});
			}
09-16 05:41