-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dustin Robertson
authored and
Dustin Robertson
committed
Oct 7, 2018
1 parent
538f009
commit eb75cec
Showing
5 changed files
with
119 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<template> | ||
<v-footer class="pa-3"> | ||
<div>All servers managed here</div> | ||
<v-spacer></v-spacer> | ||
<div>© {{ new Date().getFullYear() }}</div> | ||
</v-footer> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
} | ||
</script> | ||
|
||
<style> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<template> | ||
<v-toolbar dense m5> | ||
<v-toolbar-title>Server Status</v-toolbar-title> | ||
</v-toolbar> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
} | ||
</script> | ||
|
||
<style scoped> | ||
.v-toolbar {margin-bottom: 20px;} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<template> | ||
<v-layout row> | ||
<v-flex xs12 sm6> | ||
<v-card> | ||
<v-toolbar color="grey"> | ||
<!-- <v-toolbar-side-icon></v-toolbar-side-icon> --> | ||
|
||
<v-toolbar-title>Server Details</v-toolbar-title> | ||
<v-spacer></v-spacer> | ||
</v-toolbar> | ||
<v-list> | ||
<v-list-tile | ||
v-for="item in items" | ||
:key="item.id" | ||
avatar | ||
@click="" | ||
> | ||
<v-list-tile-action> | ||
<v-icon v-if="item.icon" color="pink">star</v-icon> | ||
</v-list-tile-action> | ||
|
||
<v-list-tile-content> | ||
{{ item.server }} : {{ item.status }} | ||
</v-list-tile-content> | ||
|
||
<v-list-tile-avatar> | ||
<!-- <img :src="item.avatar"> --> | ||
<v-icon>info</v-icon> | ||
</v-list-tile-avatar> | ||
</v-list-tile> | ||
</v-list> | ||
</v-card> | ||
</v-flex> | ||
</v-layout> | ||
|
||
</template> | ||
|
||
<script> | ||
export default { | ||
data () { | ||
return { | ||
items: [ | ||
{ server: 'Server 1', status: 'Live' }, | ||
{ server: 'Server 2', status: 'Live' }, | ||
{ server: 'Server 3', status: 'Live' }, | ||
{ server: 'Server 4', status: 'Live' }, | ||
{ server: 'Server 5', status: 'Down' } | ||
] | ||
} | ||
} | ||
} | ||
</script> | ||
|
||
<style scoped> | ||
.v-toolbar { color: white; padding: 0px;} | ||
ul {list-style: none;} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<template> | ||
<div> | ||
<p>Servers info will update shortly.</p> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
} | ||
</script> | ||
|
||
<style scoped> | ||
div { padding: 20px; padding-bottom: 0px; } | ||
</style> |