I'm currently exploring Vue.JS and working on a status bar. I am curious about how to incorporate data from Vue into an HTML attribute.
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="score" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
<span class="sr-only">${this.score}% Complete</span>
</div>
</div>
I have attempted the following:
<div class="progress">
<div class="progress-bar" role="progressbar" v-bind:aria-valuenow="score" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
<span class="sr-only">${this.score}% Complete</span>
</div>
</div>
However, the v-bind: directive does not seem to be working as expected.