| 1234567891011121314151617181920212223242526272829 |
- <template>
- <div style="scroll-container">
- <VideoDetails />
- <TallList />
- </div>
- </template>
- <script setup>
- import VideoDetails from './components/VideoDetails.vue'
- import TallList from './components/TallList.vue'
- const handlerItemSidebar = (item) => {
- // emit('handlerItemSidebar', item)
- }
- const handlerItemCorrelation = (item) => {
- // emit('handlerItemSidebar', item)
- }
- </script>
- <style scoped>
- .content {
- border: 1px solid #00000011; /* 灰色细边框 */
- }
- .scroll-container {
- height: 100vh;
- overflow-y: auto;
- }
- </style>
|