feat: toasts

This commit is contained in:
2026-07-14 11:44:17 +02:00
parent 3b499ff791
commit 566f8403ef
13 changed files with 181 additions and 14 deletions
+2
View File
@@ -2,6 +2,7 @@
import { ref, onMounted, defineAsyncComponent } from "vue";
const TaskList = defineAsyncComponent(() => import("@/components/TaskList.vue"));
const PageFooter = defineAsyncComponent(() => import("@/components/PageFooter.vue"));
const AlertsContainer = defineAsyncComponent(() => import("@/components/AlertsContainer.vue"));
const visible = ref<boolean>(false);
@@ -23,5 +24,6 @@ onMounted(() => {
</div>
</div>
<page-footer />
<alerts-container />
</main>
</template>