16 lines
296 B
Vue
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>
|