1.3.7-alpha.1 • Published 11 months ago
@gaopeng123/rc-qrcode v1.3.7-alpha.1
rc-qrcode
TODO: 二维码生成
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
text | 要转换的文本 | string | null |
width | 二维码宽度 | number | 200 |
height | 二维码高度 | number | 200 |
toDataURL | 转换成功后返回的base64 | (url: string) => void | null |
Usage
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import { RcQrcode } from "../src";
import { useRef, useState } from "react";
const App = () => {
const [text, setText] = useState();
const ref = useRef<any>();
const onClick = ()=> {
setText(ref?.current.value)
}
return (
<>
<div>
<input ref={ref} type="text"></input>
<input type="submit" onClick={onClick}/>
</div>
<RcQrcode
text={text}
/>
</>
)
}
ReactDOM.render(<App/>, document.getElementById('root'));
1.3.7-alpha.1
11 months ago
1.3.5
1 year ago
1.3.0
2 years ago
1.2.12
2 years ago
1.2.13
2 years ago
1.2.11
2 years ago
1.2.15
2 years ago
1.1.0
2 years ago
1.0.4
2 years ago
1.1.2
2 years ago
1.0.2
2 years ago
0.9.8
2 years ago
0.9.7
2 years ago
0.9.4
2 years ago
1.0.2-alpha.9
2 years ago
0.9.3
2 years ago
1.0.2-alpha.6
2 years ago
0.9.10
2 years ago
0.9.6
2 years ago
1.0.2-alpha.10
2 years ago
0.9.11
2 years ago
0.9.5
2 years ago
1.0.3
2 years ago
1.0.2-alpha.4
2 years ago
1.0.2-alpha.5
2 years ago
1.0.2-alpha.2
2 years ago
1.0.2-alpha.3
2 years ago
1.0.2-alpha.1
2 years ago
0.8.5
2 years ago
0.8.4
2 years ago