p2p-explorer-web/src/App.vue

16 lines
296 B
Vue
Raw Normal View History

2025-01-02 03:20:43 +00:00
<template>
2025-01-03 02:53:26 +00:00
<RouterView />
2025-01-02 03:20:43 +00:00
</template>
<script setup lang="ts">
import { onMounted, onUnmounted } from "vue";
2025-01-03 02:53:26 +00:00
import { RouterView } from "vue-router";
2025-01-02 03:20:43 +00:00
onMounted(() => {
console.log("App Launch");
});
onUnmounted(() => {
console.log("App Hide");
});
</script>
<style></style>