I'm using Vue.js and I want to change a CSS class property. The HTML code which uses the class is the following:
<div class="fillTimerBar"></div>
And the CSS code:
.fillTimerBar {
width: 100%;
height: 8px;
}
From there I want to change the width class property using a computed property from the Vue component.
Which would be correct way if any?