Add navigation to the server view
This commit is contained in:
parent
349ec7da38
commit
0bf4764bfb
1 changed files with 42 additions and 38 deletions
|
@ -1,4 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
|
<div>
|
||||||
|
<navigation></navigation>
|
||||||
<div class="container mx-auto p-2 flex flex-no-shrink rounded">
|
<div class="container mx-auto p-2 flex flex-no-shrink rounded">
|
||||||
<div class="sidebar border-grey-lighter flex-no-shrink w-1/4">
|
<div class="sidebar border-grey-lighter flex-no-shrink w-1/4">
|
||||||
<div class="pt-6 px-6 pb-4 text-center">
|
<div class="pt-6 px-6 pb-4 text-center">
|
||||||
|
@ -43,11 +45,13 @@
|
||||||
<router-view></router-view>
|
<router-view></router-view>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import ServerConsole from "./ServerConsole";
|
import ServerConsole from "./ServerConsole";
|
||||||
|
import Navigation from '../core/Navigation';
|
||||||
export default {
|
export default {
|
||||||
components: {ServerConsole}
|
components: { Navigation, ServerConsole}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue