mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-06 04:27:15 -04:00
14 lines
349 B
Vue
14 lines
349 B
Vue
<script setup lang="ts">
|
|
withDefaults(defineProps<{
|
|
texts: string[];
|
|
glue?: string;
|
|
noicons?: boolean;
|
|
}>(), {
|
|
glue: ', ',
|
|
});
|
|
</script>
|
|
|
|
<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>
|