mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-07-14 22:56:42 +10:00
18 lines
374 B
Vue
18 lines
374 B
Vue
<template>
|
|
<div
|
|
@mousedown="() => window.startDragging()"
|
|
class="cursor-pointer flex flex-row items-center justify-between bg-zinc-950 px-3 py-2"
|
|
>
|
|
<div>
|
|
<Wordmark />
|
|
</div>
|
|
<WindowControl />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { getCurrentWindow } from "@tauri-apps/api/window";
|
|
|
|
const window = getCurrentWindow();
|
|
</script>
|