blob: 7a9e8f85da8509d969b356840fe16b7d9f5b1c14 (
plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<template>
<li class="navlink">
<a v-if="external" :class="linkClass" target="_blank" :href="link">{{ name }}</a>
<router-link v-else :class="linkClass" :to="link">{{ name }}</router-link>
</li>
</template>
<script>
export default {
props: {
link: String,
name: String,
external: { type: Boolean, default: false },
active: { type: Boolean, default: false }
},
computed: {
linkClass() {
if (this.active) {
return "link active";
}
return "link";
}
}
};
</script>
<style scoped>
@import url("https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap");
.link {
font-family: "Roboto Slab", serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-decoration: none;
color: #181818;
padding: 10px;
border-radius: 5px;
}
.link:hover {
background-color: #cfcfcf;
}
.navlink {
list-style-type: none;
margin: 10px;
}
.active {
background-color: #ececec !important;
}
@media (max-width: 1300px) {
.navlink {
margin: 0;
}
}
</style>
|