12 lines
170 B
Vue
12 lines
170 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
import { onMounted } from "vue";
|
||
|
|
|
||
|
|
onMounted(() => {
|
||
|
|
console.log("mounted");
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>detail</template>
|
||
|
|
|
||
|
|
<style scoped></style>
|