WebIndex/pages/article.vue

16 lines
190 B
Vue
Raw Normal View History

2024-12-02 20:00:21 +08:00
<script setup lang="ts">
2025-01-13 21:51:37 +08:00
const { $mitt } = useNuxtApp()
2024-12-02 20:00:21 +08:00
2025-01-13 21:51:37 +08:00
onMounted(() => {
2024-12-18 08:42:00 +08:00
$mitt.emit('startLoading', false)
2024-12-02 20:00:21 +08:00
})
</script>
<template>
2025-01-13 21:51:37 +08:00
<nuxt-page />
2024-12-02 20:00:21 +08:00
</template>
<style scoped>
2025-01-13 21:51:37 +08:00
</style>