PHP Classes

File: resources/js/components/TodoList.vue

Recommend this page to a friend!
  Packages of Niko Peikrishvili   Ticker   resources/js/components/TodoList.vue   Download  
File: resources/js/components/TodoList.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Ticker
Application to track and manage to do tasks
Author: By
Last change:
Date: 2 months ago
Size: 412 bytes
 

Contents

Class file image Download
<script setup> import TodoTable from './TodoTable.vue'; const props = defineProps({ onOpenModal: { type: Function, required: true, }, }); </script> <template> <div class="h-full flex flex-col" data-tour="todo-list"> <!-- Todo Table --> <div class="flex-1 overflow-y-auto"> <TodoTable :on-open-modal="onOpenModal" /> </div> </div> </template>