src/app/about/todomvc/todomvc.component.ts
The todomvc component
| selector | todomvc |
| styleUrls | ../todomvc.component.scss |
| templateUrl | ./todomvc.component.html |
import { Component } from '@angular/core';
/**
* The todomvc component
*/
@Component({
selector: 'todomvc',
templateUrl: './todomvc.component.html',
styleUrls: ['../todomvc.component.scss']
})
export class TodoMVCComponent {}
<span>TodoMVC is a great project helping you select an MV* framework : <a href="http://todomvc.com/" target="_blank">website</a></span>
../todomvc.component.scss
.todomvc {
pointer-events: none;
}