p2p-explorer-web/src/App.vue
2025-01-03 10:53:26 +08:00

16 lines
296 B
Vue

<template>
<RouterView />
</template>
<script setup lang="ts">
import { onMounted, onUnmounted } from "vue";
import { RouterView } from "vue-router";
onMounted(() => {
console.log("App Launch");
});
onUnmounted(() => {
console.log("App Hide");
});
</script>
<style></style>