I am currently working with vue3 and I am trying to apply dynamic styles. This is how my vue3 template looks:
<ul>
<li v-for="(question, q_index) in questions" :key="q_index" v-show="question.visible" :style="{padding-left: `question.level`rem}">
<Question :title="question.title" :options="question.options" :name="question.id" :visible="question.visible" @opUpdate="opHandle"/>
</li>
</ul>
However, I encountered an error in my template related to '-':
Uncaught SyntaxError: Unexpected token '-'
Can someone guide me on setting up dynamic padding left CSS style in a vue3 template?