forked from misterGF/CoPilot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServer.vue
More file actions
36 lines (33 loc) · 812 Bytes
/
Copy pathServer.vue
File metadata and controls
36 lines (33 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<template>
<div>
<h1 class="text-center">Our Environment</h1>
<section class="content">
<div class="row" v-if="servers">
<div class="col-md-4" v-for="server in servers">
<div v-bind:class="'box box-' + server.status">
<div class="box-header with-border">
<i v-bind:class="'fa fa-' + server.icon + ' fa-2x'"></i>
<h3 class="box-title">{{server.name}}</h3>
</div>
<div class="box-body">
<span>{{server.description}}</span>
</div>
</div>
</div>
</div>
</section>
</div>
</template>
<script>
import {servers} from '../../demo'
export default {
name: 'Servers',
data () {
return {
servers
}
}
}
</script>
<style>
</style>