angular: 使用 echarts
npm install echarts --save // 安装
declare const echarts: any; // 引入
https://www.echartsjs.com/zh/index.html // 使用
angular 生成二维码
# Angular 5/6/6.1/7/7.1/7.2/8 and Ionic
npm install angularx-qrcode --save
# Or use yarn
yarn add angularx-qrcode
# Angular 4
npm install angularx-qrcode@1.0.3 --save
import { QRCodeModule } from 'angularx-qrcode'; //在Module中 引入, 放在import 中
// 使用
<qrcode [qrdata]="'Your QR code data string'" [size]="256" [level]="'M'"></qrcode>