济菏高速业务端
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
529 B

1 year ago
<template>
<Teleport>
<InfoBoard :visible="visible" :selectedDevice="selectedDevice"
@update:visible="(val) => $emit('update:visible', val)"></InfoBoard>
</Teleport>
1 year ago
</template>
<script>
import Teleport from "@screen/components/Teleport.vue";
import InfoBoard from "./InfoBoard.vue";
1 year ago
export default {
components: {
Teleport,
InfoBoard,
},
1 year ago
props: {
visible: {
type: Boolean,
default: false,
1 year ago
},
1 year ago
selectedDevice: {
1 year ago
type: Object,
default: null,
},
1 year ago
},
}
1 year ago
</script>