feat: toasts
TS Lint / TypeScript (push) Successful in 1m22s
TS Lint / Oxlint (push) Successful in 1m22s
TS Lint / ESLint (push) Successful in 1m28s

This commit is contained in:
2026-07-14 11:23:33 +02:00
parent 3b499ff791
commit 9f4c8776d5
8 changed files with 103 additions and 2 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>