13 lines
315 B
Vue
13 lines
315 B
Vue
<script setup>
|
|
import "bootstrap/dist/css/bootstrap.css";
|
|
import "bootstrap-icons/font/bootstrap-icons.css";
|
|
import AudioDownload from "./views/AudioDownload.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<div class="vh-100 vw-100 bg-body-secondary">
|
|
<AudioDownload></AudioDownload>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|