2022-05-24 13:29:28 +03:00

14 lines
233 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>