25 lines
532 B
Vue
25 lines
532 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">
|
|
<paneNavigate />
|
|
</div>
|
|
<div class="view-component uk-width-expand">
|
|
<streamDisplay />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import paneNavigate from "./navigateComponents/paneNavigate";
|
|
import streamDisplay from "./streamContent.vue";
|
|
|
|
export default {
|
|
name: "NavigateContent",
|
|
|
|
components: {
|
|
paneNavigate,
|
|
streamDisplay
|
|
}
|
|
};
|
|
</script>
|