I am looking to create a columns component in VueJS that will look something like this:
<column-i xs="3" md="6" lg="12">
Some Content
</column-i>
When rendered, I would like the html markup to look like this:
<div class="column xs3 md6 lg12>Some Content</div>
In other words, I want to concatenate the prop name and its value together and then add the concatenated string to the class attribute -- and I'm having a hard time figure out how to do that.
Any ideas?