WebIndex/pages/error/maintenance.vue

15 lines
278 B
Vue
Raw Normal View History

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