mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
14 lines
233 B
Vue
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>
|