parent
980aa64706
commit
7ab1922a52
|
@ -1,6 +1,8 @@
|
|||
<template>
|
||||
<div>
|
||||
<component :is="activeName"/>
|
||||
<List v-show="activeName == 'List'"/>
|
||||
<Info v-if="activeName == 'Info'"/>
|
||||
<recordList v-if="activeName == 'recordList'"/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
<template>
|
||||
<div>
|
||||
<component :is="activeName"/>
|
||||
<List v-show="activeName == 'List'"/>
|
||||
<Info v-if="activeName == 'Info'"/>
|
||||
<recordList v-if="activeName == 'recordList'"/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
<template>
|
||||
<div>
|
||||
<component :is="activeName"/>
|
||||
<!-- <component :is="activeName"/>-->
|
||||
<List v-show="activeName == 'List'"/>
|
||||
<Info v-if="activeName == 'Info'"/>
|
||||
<recordList v-if="activeName == 'recordList'"/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
<template>
|
||||
<div>
|
||||
<component :is="activeName"/>
|
||||
<List v-show="activeName == 'List'"/>
|
||||
<Info v-if="activeName == 'Info'"/>
|
||||
<recordList v-if="activeName == 'recordList'"/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<template>
|
||||
<div>
|
||||
<component :is="activeName"/>
|
||||
<List v-show="activeName == 'List'"/>
|
||||
<videoList v-if="activeName == 'videoList'"/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
Loading…
Reference in New Issue