Added stream view tab
This commit is contained in:
parent
bead058b6d
commit
ba280c6284
2 changed files with 38 additions and 0 deletions
|
|
@ -31,6 +31,15 @@
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
|
<tabIcon
|
||||||
|
id="view-tab-icon"
|
||||||
|
tab-i-d="view"
|
||||||
|
:require-connection="true"
|
||||||
|
:current-tab="currentTab"
|
||||||
|
@set-tab="setTab"
|
||||||
|
>
|
||||||
|
<i class="material-icons">visibility</i>
|
||||||
|
</tabIcon>
|
||||||
<tabIcon
|
<tabIcon
|
||||||
id="navigate-tab-icon"
|
id="navigate-tab-icon"
|
||||||
tab-i-d="navigate"
|
tab-i-d="navigate"
|
||||||
|
|
@ -94,6 +103,13 @@
|
||||||
>
|
>
|
||||||
<galleryContent />
|
<galleryContent />
|
||||||
</tabContent>
|
</tabContent>
|
||||||
|
<tabContent
|
||||||
|
tab-i-d="view"
|
||||||
|
:require-connection="true"
|
||||||
|
:current-tab="currentTab"
|
||||||
|
>
|
||||||
|
<viewContent />
|
||||||
|
</tabContent>
|
||||||
<tabContent
|
<tabContent
|
||||||
tab-i-d="navigate"
|
tab-i-d="navigate"
|
||||||
:require-connection="true"
|
:require-connection="true"
|
||||||
|
|
@ -145,6 +161,7 @@ import tabContent from "./genericComponents/tabContent";
|
||||||
import connectContent from "./tabContentComponents/connectContent.vue";
|
import connectContent from "./tabContentComponents/connectContent.vue";
|
||||||
import navigateContent from "./tabContentComponents/navigateContent.vue";
|
import navigateContent from "./tabContentComponents/navigateContent.vue";
|
||||||
import captureContent from "./tabContentComponents/captureContent.vue";
|
import captureContent from "./tabContentComponents/captureContent.vue";
|
||||||
|
import viewContent from "./tabContentComponents/viewContent.vue";
|
||||||
import settingsContent from "./tabContentComponents/settingsContent.vue";
|
import settingsContent from "./tabContentComponents/settingsContent.vue";
|
||||||
import galleryContent from "./tabContentComponents/galleryContent.vue";
|
import galleryContent from "./tabContentComponents/galleryContent.vue";
|
||||||
import extensionContent from "./tabContentComponents/extensionContent.vue";
|
import extensionContent from "./tabContentComponents/extensionContent.vue";
|
||||||
|
|
@ -159,6 +176,7 @@ export default {
|
||||||
connectContent,
|
connectContent,
|
||||||
navigateContent,
|
navigateContent,
|
||||||
captureContent,
|
captureContent,
|
||||||
|
viewContent,
|
||||||
settingsContent,
|
settingsContent,
|
||||||
galleryContent,
|
galleryContent,
|
||||||
extensionContent
|
extensionContent
|
||||||
|
|
|
||||||
20
src/components/tabContentComponents/viewContent.vue
Normal file
20
src/components/tabContentComponents/viewContent.vue
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
<template>
|
||||||
|
<!-- Grid managing tab content -->
|
||||||
|
<div uk-grid class="uk-height-1-1 uk-margin-remove uk-padding-remove">
|
||||||
|
<div class="view-component uk-width-expand">
|
||||||
|
<streamDisplay />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import streamDisplay from "../viewComponents/streamDisplay.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "ViewContent",
|
||||||
|
|
||||||
|
components: {
|
||||||
|
streamDisplay
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue