diff options
| author | Paul Oliver <contact@pauloliver.dev> | 2026-01-02 11:37:35 +0000 |
|---|---|---|
| committer | Paul Oliver <contact@pauloliver.dev> | 2026-01-02 11:57:54 +0000 |
| commit | f7f11acafe0a404fa218c13832e32fce574ae0f6 (patch) | |
| tree | f3a531050b4be2d708eb6aac53ce4474f798886b /hsm-web/Client/src/App.vue | |
| parent | 43af089b3588b6fd29a1b09be9874054e0291c5e (diff) | |
Adds battery monitoring to frontend
Diffstat (limited to 'hsm-web/Client/src/App.vue')
| -rw-r--r-- | hsm-web/Client/src/App.vue | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/hsm-web/Client/src/App.vue b/hsm-web/Client/src/App.vue index 202e4d2..84fefcf 100644 --- a/hsm-web/Client/src/App.vue +++ b/hsm-web/Client/src/App.vue @@ -1,3 +1,14 @@ <template> <h1>HsMouse</h1> + <INA226 /> </template> + +<script> +import INA226 from './INA226.vue' + +export default { + components: { + INA226 + } +} +</script> |
