34 lines
572 B
Vue
34 lines
572 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<component :is="activeName" />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import List from './components/list.vue'
|
||
|
import Channel from './components/channel.vue'
|
||
|
import Equipment from './components/equipment.vue'
|
||
|
import Camera from './components/camera.vue'
|
||
|
export default {
|
||
|
components: {
|
||
|
List: List,
|
||
|
Channel: Channel,
|
||
|
Equipment: Equipment,
|
||
|
Camera: Camera
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
activeName: 'List',
|
||
|
AREA_ID: '',
|
||
|
PASSAGE_ID: '',
|
||
|
CAMERA_TYPE: '',
|
||
|
CAMERA_ID: ''
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
</style>
|
||
|
|