hippofish/packages/client/src/components/MkUpdated.vue

59 lines
1.1 KiB
Vue

<template>
<MkModal
ref="modal"
:z-priority="'middle'"
@click="modal!.close()"
@closed="emit('closed')"
>
<div :class="$style.root">
<div :class="$style.title">
<MkSparkle>{{ i18n.ts.misskeyUpdated }}</MkSparkle>
</div>
<div :class="$style.version"> {{ version }} 🚀</div>
<MkButton
:class="$style.gotIt"
primary
full
@click="modal!.close()"
>{{ i18n.ts.gotIt }}</MkButton
>
</div>
</MkModal>
</template>
<script lang="ts" setup>
import { shallowRef } from "vue";
import MkModal from "@/components/MkModal.vue";
import MkSparkle from "@/components/MkSparkle.vue";
import MkButton from "@/components/MkButton.vue";
import { version } from "@/config";
import { i18n } from "@/i18n";
const modal = shallowRef<InstanceType<typeof MkModal>>();
</script>
<style lang="scss" module>
.root {
margin: auto;
position: relative;
padding: 32px;
min-width: 320px;
max-width: 480px;
box-sizing: border-box;
text-align: center;
background: var(--panel);
border-radius: var(--radius);
}
.title {
font-weight: bold;
}
.version {
margin: 1em 0;
}
.gotIt {
margin: 8px 0 0 0;
}
</style>