赞
踩
目 录
与后端用Java实现生成二维码相比,在前端用Vue生成二维码更加简单、灵活。
可以用vue-cli脚手架去生成。
在终端输入以下命令:
npm install qrcodejs2 --save
在src/views路径下创建111.vue文件
- <template>
- <body>
- <div id="qqq" >
- <div id="qrCode" ref="qrCodeDiv"></div>
- </div>
- </body>
- </template>
import QRCode from 'qrcodejs2';
- <script>
- export default {
- name: "qrCode",
- data() {
- return {}
- },
- mounted: function () {
- this.$nextTick(function () {
- this.bindQRCode();
- })
- },
- methods: {
- bindQRCode: function () {
- new QRCode(this.$refs.qrCodeDiv, {
- text: 'Vue实现生成二维码!',
- width: 200,
- height: 200,
- colorDark: "#333333", //二维码颜色
- colorLight: "#ffffff", //二维码背景色
- correctLevel: QRCode.CorrectLevel.L//容错率,L/M/H
- })
- }
- }
- }
- </script>
布局样式大家可以根据自己的喜好去定义,也可以用css控制样式,这里用less控制样式简单举个例子:
- <style lang='less'>
- #qqq {
- background-color: #111;
- width:300px;
- height:300px;
- margin: 0 auto; /*水平居中*/
- position: relative;
- }
-
- #qrCode {
- display: inline-block;
- margin: 0 auto; /*水平居中*/
- position: relative;
- top: 15%;
-
- img {
- width: 200px;
- height: 200px;
- background-color: #fff; //设置白色背景色
- padding: 6px; // 利用padding的特性,挤出白边
- }
- }
- </style>
本人是把样式也写在111.vue文件里面,也可以分开去写!
npm run serve
成功启动项目:
这里我们设计了路由,所以输入/111相当于输入/111.vue
可以在src/router/index.ts中添加一下代码:
- const routes: Array<RouteRecordRaw> = [
- {
- path: '/111',
- name: '生成二维码',
- component: () => import('../views/111.vue')
- }
- ]
识别图中的二维码后,可以看到显示我们自己设置的文本内容“Vue实现生成二维码!”
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。