chore: removed unused files

This commit is contained in:
Jannat Patel
2025-09-29 15:13:39 +05:30
parent 819a1baae0
commit 31f0833629
3 changed files with 0 additions and 31 deletions

View File

@@ -1,5 +0,0 @@
<template>
<div class="flex border-b sticky pr-5">
<div id="app-header" class="flex-1"></div>
</div>
</template>

View File

@@ -10,5 +10,4 @@
</template>
<script setup>
import AppSidebar from './AppSidebar.vue'
import AppHeader from './AppHeader.vue'
</script>

View File

@@ -1,25 +0,0 @@
<template>
<Teleport to="#app-header" v-if="showHeader">
<slot>
<header
class="flex h-10.5 items-center justify-between py-[7px] sm:pl-5 pl-2"
>
<div class="flex items-center gap-2">
<slot name="left-header" />
</div>
<div class="flex items-center gap-2">
<slot name="right-header" class="flex items-center gap-2" />
</div>
</header>
</slot>
</Teleport>
</template>
<script setup>
import { ref, nextTick } from 'vue'
const showHeader = ref(false)
nextTick(() => {
showHeader.value = true
})
</script>