18 lines
264 B
Vue
18 lines
264 B
Vue
<template>
|
|
<div class="practice-management">
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// 练考通管理逻辑
|
|
</script>
|
|
|
|
<style scoped>
|
|
.practice-management {
|
|
padding: 20px;
|
|
background: #fff;
|
|
height: 100%;
|
|
}
|
|
</style>
|