17 lines
300 B
Vue
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>
|