15 lines
292 B
Vue
15 lines
292 B
Vue
<template>
|
|
<Index />
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { onMounted, onUnmounted } from "vue";
|
|
import Index from "./pages/file/index.vue";
|
|
onMounted(() => {
|
|
console.log("App Launch");
|
|
});
|
|
onUnmounted(() => {
|
|
console.log("App Hide");
|
|
});
|
|
</script>
|
|
<style></style>
|