我有一个简单的组件如下: -
@Component({
selector: 'list',
templateUrl: './list.component.html',
styleUrls: ['./list.component.css']
});
export class listComponent implments onInit {
@Input customTemplateUrl: string;
}
我可以加载作为@Input传递的自定义模板作为组件的模板吗?