1. 下载安装 ngx-clipboard 插件
代码:npm install ngx-clipboard --D
2. 在 app.module 下引入
3. 在 html 上使用
<button nz-button nzType="default" ngxClipboard [cbContent]="commandContent" (cbOnSuccess)="successFun()"> 复制命令 </button>
参数说明:
ngxClipboard 必须加上
[cbContent] 绑定的内容即需要复制的内容
(cbOnSuccess) 复制成功后调用的函数