mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-10 04:22:13 +10:00
13 lines
301 B
Vue
13 lines
301 B
Vue
<template>
|
|
<HeaderButton @click="() => window.close()">
|
|
<XMarkIcon />
|
|
</HeaderButton>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { MinusIcon, XMarkIcon } from "@heroicons/vue/16/solid";
|
|
import { getCurrentWindow } from "@tauri-apps/api/window";
|
|
|
|
const window = getCurrentWindow();
|
|
</script>
|