angulart 常用

旧街凉风 提交于 2019-12-05 23:26:30

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>

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!