WebIndex/pages/article.vue

15 lines
187 B
Vue
Raw Normal View History

2024-12-02 20:00:21 +08:00
<script setup lang="ts">
2024-12-18 08:42:00 +08:00
const {$mitt} = useNuxtApp()
2024-12-02 20:00:21 +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>
<nuxt-page/>
</template>
<style scoped>
</style>