feat: toasts
TS Lint / Oxlint (push) Successful in 2m14s
TS Lint / TypeScript (push) Successful in 2m20s
TS Lint / ESLint (push) Successful in 2m39s

This commit is contained in:
2026-07-14 11:39:03 +02:00
parent 3b499ff791
commit 5d655b9613
13 changed files with 174 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>