feat: 添加eslint 和 桌面歌词(未完成)

This commit is contained in:
alger
2024-05-16 18:54:30 +08:00
parent 5e8676a039
commit a9e5bb33e4
65 changed files with 2724 additions and 2320 deletions
+6 -5
View File
@@ -1,15 +1,16 @@
<template>
<div class="bottom" v-if="isPlay"></div>
<div v-if="isPlay" class="bottom"></div>
</template>
<script setup lang="ts">
import { useStore } from 'vuex';
const store = useStore()
const isPlay = computed(() => store.state.isPlay as boolean)
const store = useStore();
const isPlay = computed(() => store.state.isPlay as boolean);
</script>
<style lang="scss" scoped>
.bottom{
.bottom {
@apply h-28;
}
</style>
</style>