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 11:08:38 +08:00
|
|
|
<AudioDownload></AudioDownload>
|
2023-02-22 11:13:06 +08:00
|
|
|
</template>
|
|
|
|
|
2023-02-23 11:08:38 +08:00
|
|
|
<style scoped></style>
|