fix build

This commit is contained in:
2025-05-31 16:07:12 +02:00
parent b6dd96cbad
commit 091a2123bb
21 changed files with 1034 additions and 191 deletions

View File

@ -5,11 +5,11 @@
</div>
<div class="flex flex-col justify-center items-center gap-5 max-w-3xl">
<!-- <img
src="/logo.svg"
:src="convertFileSrc('/logo.svg', 'http')"
class="bg-primary p-3 size-16 rounded-full"
alt="HaexVault Logo"
/> -->
<UiLogoHaexhub class="bg-primary p-3 size-16 rounded-full" />
<span
class="flex flex-wrap font-bold text-pretty text-xl gap-2 justify-center"
>
@ -26,6 +26,8 @@
v-model:open="passwordPromptOpen"
:path="vaultPath"
/>
<UiButton @click="refresh">Refresh</UiButton>
</div>
<div
@ -80,8 +82,11 @@
</template>
<script setup lang="ts">
import { UiLogoHaexhub } from '#components'
import { convertFileSrc } from '@tauri-apps/api/core'
import { openUrl } from '@tauri-apps/plugin-opener'
const refresh = () => location.reload()
definePageMeta({
name: 'vaultOpen',
})