Web app controls for background detection

There are now buttons to set, and check, the background
detect plugin.
This commit is contained in:
Richard Bowman 2024-01-03 21:36:25 +00:00
parent 0083231b85
commit 778da73a70
3 changed files with 113 additions and 2 deletions

View file

@ -0,0 +1,25 @@
<template>
<!-- Grid managing tab content -->
<div uk-grid class="uk-height-1-1 uk-margin-remove uk-padding-remove">
<div class="control-component">
<paneBackgroundDetect />
</div>
<div class="view-component uk-width-expand">
<streamDisplay />
</div>
</div>
</template>
<script>
import paneBackgroundDetect from "./backgroundDetectComponents/paneBackgroundDetect";
import streamDisplay from "./streamContent.vue";
export default {
name: "BackgroundDetectContent",
components: {
paneBackgroundDetect,
streamDisplay
}
};
</script>