Here is the code that I have:
<b-button
id="search-button"
size="md"
class="mt-1 w-100"
type="submit"
@click="someEvent()"
>Example
</b-button
If we imagine calling someEvent() and wanting to modify the value of class="mt-1 w-100" in the script to class="mt-1 w-90"
One approach could be defining a style within b-button and executing document.getElementById("search-button").style.width = "90px"; in the script, but that's not quite what I'm after.
The main question remains: How can I directly access and alter the class utilities/values from the script?