Thành phần được định nghĩa như thế này:
import {Component} from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.less']
})
export class AppComponent {
}
Tôi muốn tải vào một số thành phần cụ thể thay vì "app.component.html" một tệp có phần mở rộng htm "app.component.htmlm"
@Component({
selector: 'app-root',
templateUrl: './app.component.htm',
styleUrls: ['./app.component.less']
})
từ một số lý do nó không hoạt động nó nói:
ERROR in ./app.component.htm 1:0
Module parse failed: Unexpected token (1:0)
You may need an appropriate loader to handle this file type.
<p>
app component works!
</p>
「wdm」: Failed to compile.
Xin hãy giúp tôi tìm cách tải tập tin htm? Tôi biết rằng có một cách để bootstrap với Webpack, tôi muốn giữ bản dựng hiện tại của ng-phục vụ \ cli angular.json!
Cảm ơn bạn!