feat(projects): confirmation popup before opening link

This commit is contained in:
2025-12-18 16:19:46 +01:00
parent f4432fedf1
commit e186ac848d
8 changed files with 198 additions and 13 deletions

View File

@@ -1,6 +1,7 @@
<script setup lang="ts">
import Background from "./Background.vue";
import Buttons from "./Buttons.vue";
import LinkConfirmationPopup from "./LinkConfirmationPopup.vue";
const store = useProjectsStore();
@@ -23,5 +24,6 @@ watch(
<template v-if="!store.loading">
<Background />
<Buttons />
<LinkConfirmationPopup v-if="store.showConfirmationPopup" />
</template>
</template>