[Vuejs]-Concatenate/Join Template Elements with a "+"

1👍

Easy enough. Conditional rendering based on index. Something similar to this should work:

<template v-for="(v, i) in item">
  {{i > 0 ? ' + ' : ''}}<kbd :key="i">{{ v }}</kbd>
</template>

Leave a comment