mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-05 11:02:41 -04:00
14 lines
359 B
Vue
14 lines
359 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>
|