我正在使用 Visual Studio 代码开发 angular2 应用程序,我已经安装了以下扩展,
和
我的组件模板如下,
@Component({
selector: 'userprofile',
template: `
<div class="profilecontainer">
<div class="row">
<img [src]="profile.profilePic" />
<div class="row">
<h2>{{profile.firstName}} {{profile.lastName}} </h2>
<a target="_blank" href="{{profile.detailUrl}}"> View profile</a>
<a target="-blank" href="{{profile.editUrl}}">Edit profile</a>
</div>
</div>`
})
Hml lint 在 vs 代码上没有显示任何错误?问题是什么?