//生成课程二维码功能
npm install--save qrcode //导入第三方插件
<div id = "qrcode" > 二维码位置 </div>
import QRCode from 'qrcodejs2'
qrcode: function() {
		//let videoNameUrl = "http://xxx.xxx.net/VideoCourse.html?name=" +VideoName
		qrcode = new QRCode('qrcode', {
			width: 100, //高度
			height: 100, // 高度
			text: videoNameUrl, // 二维码内容
			render: 'canvas' // 设置渲染方式(有两种方式 table和canvas,默认是canvas)
			background: '#f0f',
			foreground: '#ff0'
		})
	}

//条形码功能
<script src="http://cdn.bootcss.com/jsbarcode/3.5.7/JsBarcode.all.min.js"></script> (index.html引入)
JsBarcode: function() {
	JsBarcode("#barcode", this.childCode, {
		width: "1px", //条宽度
		height: "40px", //高度
		fontSize: 14, //字体
		textAlign: "center" //居中
	});
}

Logo

前往低代码交流专区

更多推荐