Files
swingmusic-extended/src/components/RightSideBar/Search/Tab.vue
T
geoffrey45 c2783fe540 remove @vueuse/motion
+ remove unused data folder
2022-08-02 05:42:07 +03:00

14 lines
229 B
Vue

<template>
<div v-show="name == s.currentTab">
<slot />
</div>
</template>
<script setup lang="ts">
import useSearchStore from "@/stores/search";
const s = useSearchStore();
defineProps<{
name: string;
}>();
</script>