Struggling with a simple task and encountering an error:
Code snippet below:
app.component.html
<div class="col-md-{{myvalue}}">stuff here</div>
app.component.ts
myvalue: string;
ngOnInit() {
this.myvalue('6');
}
Seeing the following error message:
Cannot invoke an expression whose type lacks a call signature. Type 'String' has no compatible call signatures.
Any idea what I'm doing wrong?