Skip to content

Instantly share code, notes, and snippets.

@talkingdotnet
Created December 4, 2017 06:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save talkingdotnet/18d58640e97b3e64122e98dd7ecfbd13 to your computer and use it in GitHub Desktop.
Save talkingdotnet/18d58640e97b3e64122e98dd7ecfbd13 to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
import { Meta } from '@angular/platform-browser';
@Component({
selector: 'my-app',
templateUrl: './home.html',
})
export class HomeComponent {
constructor(private meta: Meta) {
this.meta.addTag({ name: 'description', content: 'How to use Angular 4 meta service' });
this.meta.addTag({ name: 'author', content: 'talkingdotnet' });
this.meta.addTag({ name: 'keywords', content: 'Angular, Meta Service' });
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment