0 votes
in VueJS by
Which is the simplest way to perform attribute binding?

select the correct option from below

a)<span :title:=”vue_var”>Some text</span>

b)<span title=”vue_var”>Some text</span>

c)<span title:=”vue_var”>Some text</span>

d)<span :title=”vue_var”>Some text</span>

1 Answer

0 votes
by
d)<span :title=”vue_var”>Some text</span> is the simplest way to perform attribute binding

Related questions

0 votes
asked Mar 16, 2022 in Azure Function by sharadyadav1986
...