EdToc.vue 438 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <section>
  3. <ul>
  4. <li
  5. v-for="item in toc"
  6. :key="item.uuid"
  7. >
  8. <TocItem :item="item" :level="1" :editionid="$route.params.id" />
  9. </li>
  10. </ul>
  11. </section>
  12. </template>
  13. <script>
  14. import TocItem from './TocItem'
  15. export default {
  16. name: 'EdToc',
  17. components: {
  18. TocItem
  19. },
  20. props: {
  21. toc: Array
  22. },
  23. data: () => ({
  24. })
  25. }
  26. </script>
  27. <style lang="scss" scoped>
  28. </style>