This repository has been archived on 2025-01-07. You can view files and clone it, but cannot push or open issues or pull requests.
rebuilding-acquia/src/components/Sidebar.vue

32 lines
948 B
Vue
Raw Normal View History

2018-12-25 22:46:21 +00:00
<template>
2018-12-25 23:20:12 +00:00
<div class="w-auto lg:w-64 bg-grey-darkest text-white antialiased fixed pin-l h-full">
2018-12-25 22:46:21 +00:00
<div>
<ul class="list-reset">
<li v-for="link in links" :key="link.title">
<a
href="#0"
class="flex items-center no-underline hover:underline focus:underline border-l-6 px-4 py-5"
:class="{
'border-blue bg-grey-darker': link.active,
'border-transparent': !link.active,
'text-grey cursor-not-allowed': link.disabled,
'text-white': !link.disabled,
}"
>
<svg class="h-6 w-6 fill-current" role="presentation"><use :xlink:href="`/img/icons.symbol.svg#${link.icon}`"></use></svg>
<span class="hidden lg:block lg:ml-4">{{ link.title }}</span>
</a>
</li>
</ul>
</div>
</div>
</template>
<script>
export default {
props: {
links: Array,
},
}
</script>