mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
a99ea78118
- move search main into right-sidebar > search -
14 lines
257 B
Vue
14 lines
257 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>
|