PronounsPage/components/LinkedTextMultiple.vue
2021-07-02 22:32:23 +02:00

14 lines
386 B
Vue

<template>
<span><template v-for="(text, i) in texts"><LinkedText :text="text.trim()" :noicons="noicons"/><span v-if="i !== texts.length - 1">{{ glue }}</span></template></span>
</template>
<script>
export default {
props: {
texts: { required: true },
glue: { 'default': ', '},
noicons: { type: Boolean },
},
}
</script>