WebIndex/pages/error/maintenance.vue

20 lines
298 B
Vue
Raw Normal View History

2024-11-17 13:05:55 +08:00
<script setup lang="ts">
2025-01-13 21:51:37 +08:00
const { $mitt } = useNuxtApp()
2024-12-18 08:42:00 +08:00
2024-11-17 13:05:55 +08:00
onMounted(() => {
2025-01-13 21:51:37 +08:00
$mitt.emit('startLoading', false)
2024-11-17 13:05:55 +08:00
})
</script>
<template>
2025-01-13 21:51:37 +08:00
<alert
icon="🚧"
title="建设中"
message="此页面正在建设中,请稍后再来查看更新。"
/>
2024-11-17 13:05:55 +08:00
</template>
<style scoped>
2025-01-13 21:51:37 +08:00
</style>