qa-regulatory-gwj-vue/src/views/keyprojects/hidden/index.vue

30 lines
522 B
Vue
Raw Normal View History

2023-11-07 10:04:37 +08:00
<template>
<div>
<OutSourced v-show="activeName=='OutSourced'" ref="outSourced" active-name="List"/>
2023-11-07 10:04:37 +08:00
<component :is="activeName"/>
</div>
</template>
<script>
import List from './components/list'
import Info from './components/info'
import OutSourced from '@/components/OutSourced/index'
2023-11-07 10:04:37 +08:00
export default {
components: {
List: List,
OutSourced: OutSourced,
2023-11-07 10:04:37 +08:00
Info: Info
},
data() {
return {
activeName: 'OutSourced',
2023-11-07 10:04:37 +08:00
HIDDEN_ID: ''
}
}
}
</script>
<style scoped>
</style>