VUE项目开发实践——引入二维码和条形码功能

//生成课程二维码功能
npm install--save qrcode //导入第三方插件
二维码位置
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' }) }

//条形码功能
 (index.html引入)
JsBarcode: function() {
	JsBarcode("#barcode", this.childCode, {
		width: "1px", //条宽度
		height: "40px", //高度
		fontSize: 14, //字体
		textAlign: "center" //居中
	});
}

你可能感兴趣的:(全靠实践)