import { Qrcode } from 'vux'
export default {
components: {
Qrcode
}
}
// 在入口文件全局引入
import Vue from 'vue'
import { Qrcode } from 'vux'
Vue.component('qrcode', Qrcode)
名字 | 类型 | 默认值 | 说明 | 版本要求 |
value | string | 编码内容,如果为链接,请保证有http(s)协议名 | -- | |
size | number | 80 | 尺寸大小 | -- |
bg-color | string | #FFFFFF | 背景颜色 | -- |
fg-color | string | #000000 | 二维码着色 | -- |
type | string | img | 渲染类型,可以为img (适合需要在微信需要长按识别的场景)和canvas | -- |