Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <template> <section class="h-screen w-screen justify-center items-center flex"> <ul class="bg-gray-100 flex-row border-2 w-10/12 md:w-5/6 lg:w-1/2"> <TodoAdd /> <TodoRow v-for="(todo, index) in store.getTodos" :key="index" :todo="todo" /> </ul> </section> </template> <script lang="ts" setup> import { useTodoStore } from '~~/stores/TodoStore' const store = useTodoStore() </script> |