2021-08-13 10:59:54 +02:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<MkModal
|
|
|
|
ref="modal"
|
|
|
|
:z-priority="'middle'"
|
2024-04-23 15:30:55 +02:00
|
|
|
@click="modal!.close()"
|
|
|
|
@closed="emit('closed')"
|
2023-04-08 02:01:42 +02:00
|
|
|
>
|
|
|
|
<div :class="$style.root">
|
|
|
|
<div :class="$style.title">
|
|
|
|
<MkSparkle>{{ i18n.ts.misskeyUpdated }}</MkSparkle>
|
2023-02-01 20:06:34 +01:00
|
|
|
</div>
|
2023-04-08 02:01:42 +02:00
|
|
|
<div :class="$style.version">✨ {{ version }} 🚀</div>
|
|
|
|
<MkButton
|
|
|
|
:class="$style.gotIt"
|
|
|
|
primary
|
|
|
|
full
|
2024-04-23 15:30:55 +02:00
|
|
|
@click="modal!.close()"
|
2023-04-08 02:01:42 +02:00
|
|
|
>{{ i18n.ts.gotIt }}</MkButton
|
|
|
|
>
|
2023-01-04 02:38:07 +01:00
|
|
|
</div>
|
2023-04-08 02:01:42 +02:00
|
|
|
</MkModal>
|
2021-08-13 10:59:54 +02:00
|
|
|
</template>
|
|
|
|
|
2021-12-29 05:14:19 +01:00
|
|
|
<script lang="ts" setup>
|
2024-05-04 09:08:41 +02:00
|
|
|
import { shallowRef } from "vue";
|
2023-04-08 02:01:42 +02:00
|
|
|
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";
|
2021-08-13 10:59:54 +02:00
|
|
|
|
2023-02-19 05:09:14 +01:00
|
|
|
const modal = shallowRef<InstanceType<typeof MkModal>>();
|
2021-08-13 10:59:54 +02:00
|
|
|
</script>
|
|
|
|
|
2023-02-19 05:13:24 +01:00
|
|
|
<style lang="scss" module>
|
2023-02-19 04:58:42 +01:00
|
|
|
.root {
|
|
|
|
margin: auto;
|
2021-08-13 10:59:54 +02:00
|
|
|
position: relative;
|
|
|
|
padding: 32px;
|
|
|
|
min-width: 320px;
|
|
|
|
max-width: 480px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-align: center;
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: var(--radius);
|
2023-02-19 04:58:42 +01:00
|
|
|
}
|
2021-08-13 10:59:54 +02:00
|
|
|
|
2023-02-19 04:58:42 +01:00
|
|
|
.title {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2021-10-22 19:45:25 +02:00
|
|
|
|
2023-02-19 04:58:42 +01:00
|
|
|
.version {
|
|
|
|
margin: 1em 0;
|
|
|
|
}
|
2023-01-04 02:38:07 +01:00
|
|
|
|
2023-02-19 04:58:42 +01:00
|
|
|
.gotIt {
|
|
|
|
margin: 8px 0 0 0;
|
|
|
|
}
|
2021-08-13 10:59:54 +02:00
|
|
|
</style>
|