MyList.vue 632 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <ul class="todo-main">
  3. <MyItem
  4. v-for="todoObj in todos"
  5. :key="todoObj.id"
  6. :todo="todoObj"
  7. ></MyItem>
  8. </ul>
  9. </template>
  10. <script>
  11. import MyItem from './MyItem.vue';
  12. export default {
  13. name:'MyList',
  14. components:{MyItem},
  15. props:['todos']
  16. }
  17. </script>
  18. <style scoped>
  19. /*main*/
  20. .todo-main {
  21. margin-left: 0px;
  22. border: 1px solid #ddd;
  23. border-radius: 2px;
  24. padding: 0px;
  25. }
  26. .todo-empty {
  27. height: 40px;
  28. line-height: 40px;
  29. border: 1px solid #ddd;
  30. border-radius: 2px;
  31. padding-left: 5px;
  32. margin-top: 10px;
  33. }
  34. </style>