For example:
<v-checkbox v-for="(v,k) in questionContent.choices" :key="k"
v-model="answerData[question.id]" @change="saveAnswer(qe.id, question.id)"
:label="`${k}. ${v}`"
:value="k"
hide-details
/>
What is the name of this `${k}. ${v}` feature ?