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>
|
||||
<div>
|
||||
<navigation></navigation>
|
||||
<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="pt-6 px-6 pb-4 text-center">
|
||||
|
@ -43,11 +45,13 @@
|
|||
<router-view></router-view>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ServerConsole from "./ServerConsole";
|
||||
import Navigation from '../core/Navigation';
|
||||
export default {
|
||||
components: {ServerConsole}
|
||||
components: { Navigation, ServerConsole}
|
||||
}
|
||||
</script>
|
||||
|
|
Loading…
Reference in a new issue