当前位置: 代码迷 >> 综合 >> react 生成二维码 qrcode.react
  详细解决方案

react 生成二维码 qrcode.react

热度:35   发布时间:2023-12-29 23:42:12.0

NPM:

# npm install qrcode.react
import React from 'react';
import QRCode from 'qrcode.react'
React.render(<QRCode value="http://facebook.github.io/react/" />,mountNode
);
prop type
value string
renderAs string (‘canvas’ ‘svg’)
size number
bgColor string (CSS color)
fgColor string (CSS color)
level string (‘L’ ‘M’ ‘Q’ ‘H’)
includeMargin boolean

原文:https://www.npmjs.com/package/qrcode.react#available-props

  相关解决方案