8 lines
166 B
Vue
8 lines
166 B
Vue
![]() |
<template> xxxxx </template>
|
||
|
<script lang="ts" setup>
|
||
|
import { ref, onMounted, onUnmounted } from 'vue';
|
||
|
|
||
|
onMounted(() => {});
|
||
|
onUnmounted(() => {});
|
||
|
</script>
|