angularx-qrcode
기존에 ngx-qrcode2 을 사용하다가 angular 16 과는 호환이 되지 않아 angularx-qrcode를 사용하기로 결정하였다.
install
npm i angularx-qrcode
사용법
- app.module.ts
import { QRCodeModule } from 'angularx-qrcode';
..........
@NgModule({
imports: [
QRCodeModule
]
- html
<qrcode [qrdata]="'Your data string'" [width]="256" [errorCorrectionLevel]="'M'"></qrcode>