Files
learning-system-portal/src/views/TeacherIndex.vue
2022-05-29 18:56:34 +08:00

32 lines
427 B
Vue

<template>
<div>
<Remark>
1.教师个人中心首页<br/>
2.<br/>
3.<br/>
</Remark>
</div>
</template>
<script>
export default {
name: 'ucTeacherIndex',
components:{},
data(){
return {
params:{name:'',type:''}
}
},
created() {
this.$router.push('/need/course');
},
methods:{
}
}
</script>
<style scoped lang="scss">
</style>