10 lines
151 B
Vue
10 lines
151 B
Vue
|
|
<script setup>
|
||
|
|
import { ref, onMounted, onUnmounted } from "vue";
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<Container> </Container>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style scoped></style>
|