24 lines
692 B
Vue
24 lines
692 B
Vue
|
<script setup lang="ts">
|
||
|
|
||
|
import Camera from "../components/Camera.vue";
|
||
|
import { useRoute } from 'vue-router';
|
||
|
const route = useRoute();
|
||
|
const cameraID = Number(route.params.id); // Assuming we're using camera Number
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="camera-container">
|
||
|
<Camera :cameraID=cameraID />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
.camera-container {
|
||
|
height: 90vh; /* Set the height of the container to 100% of the viewport height */
|
||
|
width: 75%;
|
||
|
display: flex; /* Use flexbox to align items vertically */
|
||
|
justify-content: center; /* Center the child element horizontally */
|
||
|
align-items: center; /* Center the child element vertically */
|
||
|
}
|
||
|
</style>
|