ngspotifylib
v1.0.2
Published
Angular module that fetches artist's names from spotify
Downloads
4
Readme
NgSpotifylib
Angular module that fetches artist's names from spotify
Prerequisites
Example code
export class AppComponent implements OnInit{ title = 'NG Spotify'; artist:string = "";
constructor(private router: Router){
} ngOnInit(){
} search(){ this.router.navigate(['/link'], { queryParams: { artist: this.artist } });
}
}
