class="tab-title"
v-on:click="tab"
v-for="(tabTitle,index) in tabTitleList"
:id="index"
I found this example in an vue community, but in my situation, I want my "id" has a prefix, not just a number.
That is to say, if the index is 1, I want <span id='sp_1'></span>
instead of <span id='1'></span>
.