mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
c2783fe540
+ remove unused data folder
14 lines
229 B
Vue
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>
|