diff --git a/hwe/ts/components/TopBackBar.vue b/hwe/ts/components/TopBackBar.vue
index 1826254d..ce7cbd0f 100644
--- a/hwe/ts/components/TopBackBar.vue
+++ b/hwe/ts/components/TopBackBar.vue
@@ -7,7 +7,10 @@
{{ title }}
-
+
+
+
+
import "@scss/game_bg.scss";
-import { type PropType, ref, watch } from "vue";
+import { type PropType, ref, watch, useSlots } from "vue";
import VueTypes from "vue-types";
const props = defineProps({
@@ -52,6 +55,10 @@ const props = defineProps({
},
});
+const slots = useSlots();
+console.log(slots);
+const hasSlot = !!slots['default'];
+
const emit = defineEmits(["update:searchable", "reload"]);
const toggleSearch = ref(props.searchable);