LogsStepsList.vue 394 B

12345678910111213141516171819
  1. <template>
  2. <div class="logs-steps-list">
  3. <LogsStepsItem v-for="(item, index) of list" :key="item.created_at" :node="item"/>
  4. </div>
  5. </template>
  6. <script setup>
  7. import { ref, inject, computed, nextTick } from "vue";
  8. import LogsStepsItem from './LogsStepsItem.vue'
  9. const props = defineProps({
  10. list: Array
  11. });
  12. </script>
  13. <style lang="scss" scoped>
  14. .logs-steps-list{
  15. }
  16. </style>