27 lines
630 B
Vue
27 lines
630 B
Vue
<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";
|
|
// vue3 migration
|
|
import { markRaw } from "vue";
|
|
|
|
export default {
|
|
name: "BackgroundDetectContent",
|
|
|
|
components: {
|
|
paneBackgroundDetect,
|
|
streamDisplay
|
|
},
|
|
};
|
|
</script>
|