How to add class attribute in angular 2 component typescript file ?
Below is my footer component code, i want to add footer class to it.
footer.component.ts
import { Component } from '@angular/core';
import { Footer } from './footer';
@Component({
moduleId: module.id,
selector: 'footer',
templateUrl: 'footer.component.html'
})
export class FooterComponent {
constructor() {
this.title = 'Footer Content';
this.css_class = 'navbar-fixed-bottom';
}
}
footer.ts
export class Footer {
constructor(
public title: string
) { }
}
Please suggest.