14 lines
160 B
Vue
14 lines
160 B
Vue
|
<script setup lang="ts">
|
||
|
|
||
|
onMounted( () => {
|
||
|
emitter.emit('startLoading', false)
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<nuxt-page/>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|