办学质量监测教学评价系统
康鲁杰
2 小时以前 38a626b58763f903f5580d49854a420681925092
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 <script setup lang="ts">
 import VoInput from './voInput.vue';
 import VoList from './voList.vue';
 </script>
<template>
 
<div class="flex w-full h-full   video-content">
    <div class="w-[300px] h-full  overflow-y-auto vo-input">
         <VoInput/>
    </div>
    <div class=" flex-1  h-full bg-[#fafbfc] pt-2 dark:bg-[#18181c] overflow-y-auto video-list" >
        <VoList/>
    </div>
     
</div>
</template>