feat: vue router and quality of life icons
This commit is contained in:
@@ -1,8 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
import { ListTodoIcon } from "@lucide/vue";
|
||||
import { ref, onMounted, defineAsyncComponent } from "vue";
|
||||
const TaskList = defineAsyncComponent(
|
||||
() => import("@/components/TaskList.vue"),
|
||||
);
|
||||
const PageFooter = defineAsyncComponent(
|
||||
() => import("@/components/PageFooter.vue"),
|
||||
);
|
||||
@@ -32,9 +30,9 @@ onMounted(() => {
|
||||
<h1
|
||||
class="p-4 pb-2 text-4xl font-bold opacity-60 tracking-wide select-none"
|
||||
>
|
||||
Tout Doux
|
||||
<list-todo-icon :stroke-width="3" :size="32" class="inline" /> Tout Doux
|
||||
</h1>
|
||||
<task-list />
|
||||
<router-view />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user