openflexure-microscope-server/openflexure_microscope/api/static/src/components/tabContentComponents/viewContent.vue
2020-06-25 15:40:51 +01:00

20 lines
394 B
Vue

<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>