这是我的组件
从'@ angular / core'导入{Component,OnInit};
@Component({
selector: 'dm-demo',
templateUrl: 'http://localhost:99/index.html',
styleUrls: ['./demo.component.css'],
})
export class DemoComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
我想在代码中将templateUrl添加为上面的HTTP URL。 但无法编译。 Angular编译器给出错误如下
找不到模块:错误:无法解决 'E:\ code \ demo \ src \ app \ demo'
中的'./ {{}}}'
任何人都可以知道如何实现这个目标吗?