I have the following in a vue.js script:
<v-tab v-for="type in searchTypes" :id="type.value" :key="type.value" @click="getSelectValue(type.value)">
I want to append the id of "type.value" with a fixed string "_tab"
I have tried various ways without getting it to work. Any help is appreciated. thank you