💄 Designed card component
This commit is contained in:
parent
1d963e6f5b
commit
3a7cb3e9bc
9 changed files with 980 additions and 0 deletions
18
frontend/src/App.vue
Normal file
18
frontend/src/App.vue
Normal file
|
@ -0,0 +1,18 @@
|
|||
<script setup>
|
||||
import "bootstrap/dist/css/bootstrap.css";
|
||||
import "bootstrap-icons/font/bootstrap-icons.css"
|
||||
import AudioCard from "./components/AudioCard.vue";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div id="wrapper">
|
||||
<AudioCard></AudioCard>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
#wrapper {
|
||||
margin-top: 20px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue