Files
drop-app/components/MiniHeader.vue
2024-10-09 17:55:19 +11:00

17 lines
396 B
Vue

<template>
<div
class="h-10 cursor-pointer flex flex-row items-center justify-between bg-zinc-950"
>
<div class="px-5 py-3" @mousedown="() => window.startDragging()">
<Wordmark class="mt-1" />
</div>
<WindowControl />
</div>
</template>
<script setup lang="ts">
import { getCurrentWindow } from "@tauri-apps/api/window";
const window = getCurrentWindow();
</script>