办学质量监测教学评价系统
康鲁杰
昨天 8aa387320b299a244cb81c5735ddfe47a86dea60
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<script setup lang="ts">
import McInput from './mcInput.vue';
import mcList from './mcList.vue';
import mcplayer from './mcplayer.vue';
 
</script>
 
<template>
 
<div class="flex w-full h-full   music-content">
    <div class="w-[300px] h-full  overflow-y-auto ">
        <McInput />
    </div>
    <div class=" flex-1  h-full bg-[#fafbfc] pt-2 dark:bg-[#18181c] overflow-y-auto music-list" >
        <mcList/>
    </div>
    <div class="w-[300px]  h-full overflow-y-auto ">
        <mcplayer/>
    </div>
</div>
</template>