This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2020-11-28 07:52:48 -08:00
|
|
|
<template>
|
|
|
|
<span>
|
|
|
|
{{prepend}}{{ pronoun.getMorpheme(morpheme, counter) }}{{append}}
|
2020-12-22 02:18:52 -08:00
|
|
|
<span v-if="config.pronunciation.enabled && pronoun.pronounceable && pronoun.getPronunciation(morpheme, counter) && !pronoun.getPronunciation(morpheme, counter).startsWith('=')" class="text-muted">
|
2020-11-28 07:52:48 -08:00
|
|
|
/{{prependPr}}{{pronoun.getPronunciation(morpheme, counter)}}{{appendPr}}/
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
pronoun: { required: true },
|
|
|
|
morpheme: { required: true },
|
|
|
|
counter: { default: 0 },
|
|
|
|
|
|
|
|
prepend: { default: '' },
|
|
|
|
prependPr: { default: '' },
|
|
|
|
append: { default: '' },
|
|
|
|
appendPr: { default: '' },
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|