feat(contact): notifications system + action

This commit is contained in:
2025-11-17 21:22:26 +01:00
parent de8940c103
commit 8c8af8bac8
12 changed files with 146 additions and 36 deletions

View File

@@ -1,7 +1,7 @@
<script setup lang="ts">
import Background from "./Background.vue";
import LeftBar from "./LeftBar.vue";
import Title from "./Title.vue";
import Notifications from "./Notifications.vue";
const store = useContactStore();
@@ -15,5 +15,6 @@ onMounted(() => {
<Background />
<LeftBar />
<Title />
<Notifications />
</template>