我已经看过在组件注释中显示模板字符串的示例:
@Component({
selector: 'example-app',
template: `
<h4 class="header"> Heading of {{heading}}
</h4>`
});
还有在视图注释中显示模板字符串的示例:
@View({
template: `
<div class="row" (click)="clicked()">
<div product-image [stuff]="stuff">
</div>
`,
directives: [example]
})
有什么区别或者它是否可以互换,在指定模板字符串的位置并不重要?