Files
fe-manage/src/views/examine/CourseReviewedN.vue
2022-11-16 21:29:54 +08:00

39 lines
766 B
Vue

<!--
* @Author: lixg lixg@dongwu-inc.com
* @Date: 2022-11-16 20:59:33
* @LastEditors: lixg lixg@dongwu-inc.com
* @LastEditTime: 2022-11-16 21:09:01
* @FilePath: /fe-manage/src/views/examine/CourseReviewedN.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
<!-- 待审核课程页面 -->
<template>
<div class="coursereviewedn">
</div>
</template>
<script>
import { reactive, toRefs, } from "vue";
export default {
name: "CoursereViewedN",
setup() {
const state = reactive({
});
return {
...toRefs(state),
};
},
};
</script>
<style lang="scss">
.coursereviewedn {
}
</style>