1
0
Fork 1
mirror of https://example.com synced 2024-11-22 12:26:38 +09:00

hotfix: workaround for yet another broken imports

This commit is contained in:
naskya 2023-10-18 02:52:36 +09:00
parent 5d577e280e
commit bb9aef8f57
Signed by: naskya
GPG key ID: 164DFF24E2D40139

View file

@ -1,8 +1,5 @@
<template>
<transition
:name="defaultStore.state.animation ? 'fade' : ''"
mode="out-in"
>
<transition name="" mode="out-in">
<div v-if="pending">
<MkLoading />
</div>
@ -12,11 +9,11 @@
<div v-else>
<div class="wszdbhzo">
<div>
<i :class="icon('ph-warning')"></i>
<i class="ph-warning ph ph-lg"></i>
{{ i18n.ts.somethingHappened }}
</div>
<MkButton inline class="retry" @click="retry"
><i :class="icon('ph-arrow-clockwise')"></i>
><i class="ph-arrow-clockwise ph ph-lg"></i>
{{ i18n.ts.retry }}</MkButton
>
</div>
@ -29,8 +26,8 @@ import type { PropType } from "vue";
import { defineComponent, ref, watch } from "vue";
import MkButton from "@/components/MkButton.vue";
import { i18n } from "@/i18n";
import { defaultStore } from "@/store";
import icon from "@/scripts/icon";
// import { defaultStore } from "@/store";
// import icon from "@/scripts/icon";
export default defineComponent({
components: {