2023-02-22 11:13:06 +08:00
|
|
|
<script setup>
|
|
|
|
import "bootstrap/dist/css/bootstrap.css";
|
2023-02-22 16:24:08 +08:00
|
|
|
import "bootstrap-icons/font/bootstrap-icons.css";
|
2023-02-23 11:08:38 +08:00
|
|
|
import AudioDownload from "./views/AudioDownload.vue";
|
2023-02-22 11:13:06 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-02-23 16:10:33 +08:00
|
|
|
<div class="vh-100 vw-100 bg-body-secondary">
|
|
|
|
<AudioDownload></AudioDownload>
|
|
|
|
</div>
|
2023-02-22 11:13:06 +08:00
|
|
|
</template>
|
|
|
|
|
2023-02-23 11:08:38 +08:00
|
|
|
<style scoped></style>
|