braindrops.nicwands.com/drops/image-melody/src/App.vue
2026-07-21 12:01:40 -04:00

17 lines
300 B
Vue

<template>
<main class="drop theme-light">
<ImageMelody />
</main>
</template>
<script setup>
import ImageMelody from './components/ImageMelody.vue'
</script>
<style lang="scss">
main.drop {
background: var(--theme-bg);
color: var(--theme-fg);
height: 100vh;
}
</style>