Created
September 11, 2018 09:16
-
-
Save wizardnet972/e161042c35af454548409d9edb0aeb57 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Component } from '@angular/core'; | |
| import { Meta } from '@angular/platform-browser'; | |
| @Component({ | |
| selector: 'app-home', | |
| templateUrl: './home.component.html', | |
| styleUrls: ['./home.component.css'] | |
| }) | |
| export class HomeComponent { | |
| constructor(private meta: Meta) { | |
| this.meta.addTag({ name: 'seo:title', content: 'talink title' }); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment