mirror of
https://github.com/bitinflow/ui.git
synced 2026-03-13 13:45:59 +00:00
79 lines
1.8 KiB
Vue
79 lines
1.8 KiB
Vue
<template>
|
|
<div class="flex-1 dark:border-l dark:border-base shadow text-black dark:text-white">
|
|
<div class="bg-white border-b dark:bg-base-600 dark:border-base">
|
|
<div class="container mx-auto px-4 lg:px-16 py-10">
|
|
<div class="text-3xl font-semibold">
|
|
<slot name="title" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<nav class="bg-white dark:bg-base-700 py-4">
|
|
<div class="container mx-auto px-4 lg:px-16">
|
|
<div class="hidden xl:block space-x-4">
|
|
<bitinflow-button
|
|
v-for="item in thirdLevelLinks"
|
|
:key="item.name"
|
|
>
|
|
<i
|
|
:class="['far', item.icon]"
|
|
class="icon"
|
|
/> {{ link.name }}
|
|
</bitinflow-button>
|
|
</div>
|
|
|
|
<div class="flex flex-col xl:hidden">
|
|
<select
|
|
v-model="link"
|
|
class="bg-white"
|
|
@change="onChange"
|
|
>
|
|
<option
|
|
v-for="item in thirdLevelLinks"
|
|
:key="item.name"
|
|
:value="item.to"
|
|
>
|
|
{{ item.name }}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {mapState} from "pinia";
|
|
import {useMenuStore} from "../stores/menu.js";
|
|
import BitinflowButton from "./BitinflowButton.vue";
|
|
|
|
export default {
|
|
name: "BitinflowThirdLevelMenu",
|
|
components: {BitinflowButton},
|
|
data() {
|
|
return {
|
|
link: ''
|
|
}
|
|
},
|
|
computed: {
|
|
...mapState(useMenuStore, ['thirdLevelLinks'])
|
|
},
|
|
methods: {
|
|
onChange(event) {
|
|
this.link = event.target.value
|
|
this.$router.push(event.target.value)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.nuxt-link-active {
|
|
background: #f3f3f3;
|
|
}
|
|
|
|
.dark .nuxt-link-active {
|
|
background: #464649;
|
|
}
|
|
</style>
|