2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
2022-12-29 22:37:14 -06:00
|
|
|
<Transition :name="$store.state.animation ? 'zoom' : ''" appear>
|
2020-10-17 06:12:00 -05:00
|
|
|
<div class="mjndxjcg">
|
2020-07-09 07:18:46 -05:00
|
|
|
<img src="https://xn--931a.moe/assets/error.jpg" class="_ghost"/>
|
2022-12-19 04:01:30 -06:00
|
|
|
<p><i class="ti ti-alert-triangle"></i> {{ i18n.ts.somethingHappened }}</p>
|
2022-07-20 08:24:26 -05:00
|
|
|
<MkButton class="button" @click="() => $emit('retry')">{{ i18n.ts.retry }}</MkButton>
|
2020-07-09 07:18:46 -05:00
|
|
|
</div>
|
2022-12-29 22:37:14 -06:00
|
|
|
</Transition>
|
2020-01-29 13:37:25 -06:00
|
|
|
</template>
|
|
|
|
|
2022-01-07 00:02:25 -06:00
|
|
|
<script lang="ts" setup>
|
2022-09-06 04:21:49 -05:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2022-07-20 08:24:26 -05:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 13:37:25 -06:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 03:29:39 -06:00
|
|
|
<style lang="scss" scoped>
|
2020-02-04 23:39:52 -06:00
|
|
|
.mjndxjcg {
|
2020-01-29 13:37:25 -06:00
|
|
|
padding: 32px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> p {
|
|
|
|
margin: 0 0 8px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .button {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2020-02-08 03:35:42 -06:00
|
|
|
|
|
|
|
> img {
|
|
|
|
vertical-align: bottom;
|
2020-07-10 20:13:11 -05:00
|
|
|
height: 128px;
|
2020-02-08 03:35:42 -06:00
|
|
|
margin-bottom: 16px;
|
|
|
|
border-radius: 16px;
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
</style>
|