-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathabout.vue
49 lines (47 loc) · 1.06 KB
/
about.vue
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
37
38
39
40
41
42
43
44
45
46
47
48
49
<template>
<v-list>
<v-subheader>About Netoviz</v-subheader>
<v-list-item-group>
<v-list-item
v-for="(link, index) in links"
v-bind:key="index"
v-bind:href="link.href"
target="_blank"
>
<v-list-item-icon>
<v-icon v-text="link.icon" />
</v-list-item-icon>
<v-list-item-content>
<v-list-item-title v-text="link.text" />
</v-list-item-content>
</v-list-item>
</v-list-item-group>
</v-list>
</template>
<script>
export default {
data() {
return {
links: [
{
icon: 'mdi-code-tags',
text: 'Github repository.',
href: 'https://github.com/corestate55/netoviz'
},
{
icon: 'mdi-play-circle',
text: 'Heroku online demo.',
href: 'http://netoviz.herokuapp.com/'
},
{
icon: 'mdi-text-box-multiple',
text: 'Documents (JSDoc)',
href: '/docs'
}
]
}
},
head: () => ({ title: 'About' })
}
</script>
<style scoped></style>