mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-07-29 06:02:06 +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>
|