ionic2 生成 二维码

1:进入项目根目录

npm install angular2-qrcode

2 : 在app.module.ts   

import { QRCodeModule } from 'angular2-qrcode';
 
@NgModule({
 
declarations: [],
 
imports: [QRCodeModule]
 
........
 
})


3 : 所需组件

    

4:news.html

    

5 : news.module.ts

   

6 : news.ts

猜你喜欢

转载自blog.csdn.net/lucklilili/article/details/82383909