aboutsummaryrefslogtreecommitdiff
path: root/hsm-web/Client/src/App.vue
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2026-01-03 00:26:51 +0000
committerPaul Oliver <contact@pauloliver.dev>2026-01-03 03:42:43 +0000
commit864a1d2a22580a33b5e928734fd256c2133fb672 (patch)
treef164047133c293ae768112a6aad7eaab5df53401 /hsm-web/Client/src/App.vue
parentf7f11acafe0a404fa218c13832e32fce574ae0f6 (diff)
Adds camera streaming to frontend
Diffstat (limited to 'hsm-web/Client/src/App.vue')
-rw-r--r--hsm-web/Client/src/App.vue5
1 files changed, 4 insertions, 1 deletions
diff --git a/hsm-web/Client/src/App.vue b/hsm-web/Client/src/App.vue
index 84fefcf..af4ca3e 100644
--- a/hsm-web/Client/src/App.vue
+++ b/hsm-web/Client/src/App.vue
@@ -1,14 +1,17 @@
<template>
<h1>HsMouse</h1>
<INA226 />
+ <CameraStream />
</template>
<script>
import INA226 from './INA226.vue'
+import CameraStream from './CameraStream.vue'
export default {
components: {
- INA226
+ INA226,
+ CameraStream
}
}
</script>