mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-16 14:26:43 +08:00
32 lines
427 B
Vue
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>
|