mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
f1ec6309ba
- add another inner container to limit the offset - auto scroll current track to container start - add todo file
14 lines
256 B
Vue
14 lines
256 B
Vue
<template>
|
|
<div v-show="name == s.currentTab" v-motion-slide-visible-top>
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import useSearchStore from "@/stores/search";
|
|
const s = useSearchStore();
|
|
defineProps<{
|
|
name: string;
|
|
}>();
|
|
</script>
|