Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 966 Bytes

README.md

File metadata and controls

30 lines (24 loc) · 966 Bytes

Build Status Downloads Versions License

Copy to clipboard using Angular and clipboard.js

demo

https://doxiaodong.github.io/ng2-clip

Useage

  • install npm i ng2-clip --save
import { NgModule } from '@angular/core'
import { ClipModule } from 'ng2-clip'
@NgModule({
  imports: [
    ClipModule
  ],
  bootstrap: [AppComponent]
})
export class AppModule { }
<button clip="The word you want to copy" (onClip)="callback($event)"></button>
<button [clip]="'The word you want to copy'" (onClip)="callback($event)"></button>