diff --git a/src/components/nav/NavBar.vue b/src/components/nav/NavBar.vue index 4eb057a..c675faf 100644 --- a/src/components/nav/NavBar.vue +++ b/src/components/nav/NavBar.vue @@ -2,6 +2,7 @@ import {getAssetURL} from "@/utils/function.ts"; import NavBarEntryItem from "@/components/nav/NavBarEntryItem.vue"; +import {computed} from "vue"; type Widget = { icon: string[] @@ -27,22 +28,23 @@ const littleWidget: Widget[] = [ } ] const logoUrl = getAssetURL("logo-c.png") +const logoType: string = "logo"; +const showLogo = computed(() => logoType === 'text') - \ No newline at end of file