You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
500 B
28 lines
500 B
<template>
|
|
<view class="main">
|
|
<examinCoach v-if="identity=='考场模拟教练'"/>
|
|
<operateCoach v-if="identity=='实操教练'"/>
|
|
<principal v-if="identity=='校长'"/>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import examinCoach from './comp/examinCoach'
|
|
import operateCoach from './comp/operateCoach'
|
|
import principal from './comp/principal'
|
|
|
|
export default {
|
|
components: {
|
|
examinCoach,
|
|
operateCoach,
|
|
principal
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style></style>
|