78d8767124
Co-authored-by: naskya <m@naskya.net>
47 lines
872 B
Vue
47 lines
872 B
Vue
<template>
|
|
<transition :name="defaultStore.state.animation ? 'zoom' : ''" appear>
|
|
<div class="mjndxjcg">
|
|
<img
|
|
src="/static-assets/badges/error.webp"
|
|
class="_ghost"
|
|
alt="Error"
|
|
/>
|
|
<p>
|
|
<i :class="icon('ph-warning')"></i>
|
|
{{ i18n.ts.somethingHappened }}
|
|
</p>
|
|
<MkButton class="button" @click="() => $emit('retry')">{{
|
|
i18n.ts.retry
|
|
}}</MkButton>
|
|
</div>
|
|
</transition>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import MkButton from "@/components/MkButton.vue";
|
|
import { i18n } from "@/i18n";
|
|
import { defaultStore } from "@/store";
|
|
import icon from "@/scripts/icon";
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.mjndxjcg {
|
|
padding: 32px;
|
|
text-align: center;
|
|
|
|
> p {
|
|
margin: 0 0 8px 0;
|
|
}
|
|
|
|
> .button {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
> img {
|
|
vertical-align: bottom;
|
|
height: 128px;
|
|
margin-bottom: 16px;
|
|
border-radius: 16px;
|
|
}
|
|
}
|
|
</style>
|