index.vue 553 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div style="scroll-container">
  3. <VideoDetails />
  4. <TallList />
  5. </div>
  6. </template>
  7. <script setup>
  8. import VideoDetails from './components/VideoDetails.vue'
  9. import TallList from './components/TallList.vue'
  10. const handlerItemSidebar = (item) => {
  11. // emit('handlerItemSidebar', item)
  12. }
  13. const handlerItemCorrelation = (item) => {
  14. // emit('handlerItemSidebar', item)
  15. }
  16. </script>
  17. <style scoped>
  18. .content {
  19. border: 1px solid #00000011; /* 灰色细边框 */
  20. }
  21. .scroll-container {
  22. height: 100vh;
  23. overflow-y: auto;
  24. }
  25. </style>