2020-03-12 14:29:21 +01:00
|
|
|
<template>
|
2022-07-12 10:55:28 +02:00
|
|
|
<li>
|
2020-06-25 11:36:35 +02:00
|
|
|
<router-link v-if="to" :to="to">{{ title }}</router-link>
|
|
|
|
<b v-else>{{ title }}</b>
|
2020-02-18 08:57:00 +01:00
|
|
|
<ul>
|
2020-06-25 11:36:35 +02:00
|
|
|
<slot></slot>
|
2020-02-18 08:57:00 +01:00
|
|
|
</ul>
|
|
|
|
</li>
|
2020-03-12 14:29:21 +01:00
|
|
|
</template>
|
2022-07-12 10:55:28 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
defineProps<{
|
|
|
|
title?: string;
|
|
|
|
to: { name: string; params?: Record<string, any> };
|
|
|
|
}>();
|
2020-07-09 17:24:28 +02:00
|
|
|
|
2022-07-12 10:55:28 +02:00
|
|
|
// const route = useRoute();
|
|
|
|
// const slots = useSlots();
|
2020-07-09 17:24:28 +02:00
|
|
|
|
2022-07-12 10:55:28 +02:00
|
|
|
// const sectionActive = computed((): boolean => {
|
|
|
|
// if (slots.default) {
|
|
|
|
// return slots.default.some(
|
|
|
|
// ({
|
|
|
|
// componentOptions: {
|
|
|
|
// propsData: { to },
|
|
|
|
// },
|
|
|
|
// }) => to && to.name === route.name
|
|
|
|
// );
|
|
|
|
// }
|
|
|
|
// return false;
|
|
|
|
// });
|
2020-03-12 14:29:21 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-02-18 08:57:00 +01:00
|
|
|
li {
|
|
|
|
font-size: 1.3rem;
|
|
|
|
background-color: $secondary;
|
2020-06-17 15:54:24 +02:00
|
|
|
color: $background-color;
|
2020-02-18 08:57:00 +01:00
|
|
|
margin: 2px auto;
|
2020-03-12 14:29:21 +01:00
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
&.active {
|
|
|
|
background-color: #fea72b;
|
|
|
|
}
|
2020-03-12 14:29:21 +01:00
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
a,
|
|
|
|
b {
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px 0;
|
|
|
|
display: block;
|
|
|
|
padding: 5px 10px;
|
|
|
|
color: inherit;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|