b-modal#hatchedPet-modal(
:hide-header="true"
)
div.content(v-if="pet != null")
div.dialog-header.title(v-once) {{ $t('hatchedPetGeneric') }}
div.inner-content
div.pet-background
div(:class="pet.class")
h4.title {{ pet.name }}
div.text(v-if="!hideText")
| Visit the
|
router-link(:to="{name: 'stable'}") {{ $t('stable') }}
|
| to feed and equip your newest pet!
// @TODO make translatable with the entire sentence in one string (translators can't do sentences in multiple parts)
button.btn.btn-primary(@click="close()") {{ $t('onward') }}
div.clearfix(slot="modal-footer")