I have a component that looks something like this:
import {Component, Input} from "@angular/core";
@Component({
selector : 'radio-select',
...
})
export class RadioToggleSelect {
@Input() options : Array<string>;
}
Now I'd like to bind to the array in the HTML, such as something like:
<radio-select options='["Users", "Account Holders"]'> </radio-select>
Is this possible?