24 lines
443 B
Vue
24 lines
443 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">
|
|
<connectDisplay />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import connectDisplay from "../viewComponents/connectDisplay.vue";
|
|
|
|
export default {
|
|
name: "ConnectContent",
|
|
|
|
components: {
|
|
connectDisplay
|
|
},
|
|
|
|
data: function() {
|
|
return {};
|
|
}
|
|
};
|
|
</script>
|