学习角度5。当我使用 Angular 的 CLI 创建新组件时,我得到以下代码:
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-example',
templateUrl: './example.component.html',
styleUrls: ['./example.component.css'],
encapsulation: ViewEncapsulation.None
})
export class ExampleComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
但是encapsulation: ViewEncapsulation.None
,使代码中断并发出以下错误消息:
我知道如何通过删除来修复错误encapsulation: ViewEncapsulation.None
。然而,有没有办法一开始就没有这行代码?