refactor: format
TS Lint / ESLint (push) Has been cancelled
TS Lint / Oxlint (push) Has been cancelled
TS Lint / TypeScript (push) Has been cancelled

This commit is contained in:
2026-07-14 11:47:05 +02:00
parent 566f8403ef
commit a9b2e31d81
17 changed files with 432 additions and 183 deletions
+21 -6
View File
@@ -1,8 +1,14 @@
<script setup lang="ts">
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 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);
@@ -14,11 +20,20 @@ onMounted(() => {
</script>
<template>
<main :style="{ display: visible ? 'flex' : 'none' }" class="min-h-screen flex-col">
<main
:style="{ display: visible ? 'flex' : 'none' }"
class="min-h-screen flex-col"
>
<div class="hero bg-base-200 grow">
<div class="hero-content text-center">
<div class="max-w-md min-w-96 bg-base-100 rounded-box shadow-md">
<h1 class="p-4 pb-2 text-4xl font-bold opacity-60 tracking-wide select-none">Tout Doux</h1>
<div
class="max-w-md min-w-96 bg-base-100 rounded-box shadow-md"
>
<h1
class="p-4 pb-2 text-4xl font-bold opacity-60 tracking-wide select-none"
>
Tout Doux
</h1>
<task-list />
</div>
</div>