I am using angular 4 and I want to pass a list to html. In angular 4, the component I have is:
a = ["abc", "xyz", "lmn"]
On the html side:
<input type="text" data-provide="typeahead" data-source='["abc","xyz","lmn"]' placeholder="item..." class="form-control" />
I have to pass the list in data-source, it's a Bootstrap-3-Typeahead js object.
How do I use it with angular 4
You can bind any
attribute
with componentvariable
by usingattr
keyword