import { Component, OnInit } from '@angular/core'; @Component({ templateUrl: './qrcode.component.html', styleUrls: ['./qrcode.component.scss'] }) export class DemoQrcodeComponent implements OnInit { // data: any = new Date().toDateString(); data = ` BEGIN:VCARD VERSION:3.0 NICKNAME:熊半仙 N:熊亚运 ORG:XYY EMAIL;TYPE=INTERNET:xiongyayun428@163.com URL:http://www.xiongyayun.com TEL;TYPE=CELL:294552856 TEL:18616022340 TEL;TYPE=FAX:传真 ADR;WORK;POSTAL:宝山区逸仙路1588弄28号302室;上海市;上海;212100;中国 X-QQ:294552856 END:VCARD `; url: string; constructor() { } ngOnInit() { } onClick() { // this.data = new Date().toDateString(); // console.log(this.url); } }