package list from viandwi24
This commit is contained in:
64
components/Dashboard/Sidebar.vue
Normal file
64
components/Dashboard/Sidebar.vue
Normal file
@@ -0,0 +1,64 @@
|
||||
<script lang="ts">
|
||||
export default defineComponent({
|
||||
props: {
|
||||
mode: {
|
||||
type: String,
|
||||
default: 'normal',
|
||||
},
|
||||
},
|
||||
setup() {
|
||||
const sidebar = ref(null)
|
||||
|
||||
onMounted(() => {
|
||||
// const { onScroll } = useSticky(sidebar.value, -1000)
|
||||
// setTimeout(() => onScroll(), 50)
|
||||
})
|
||||
|
||||
return {
|
||||
sidebar,
|
||||
}
|
||||
},
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div
|
||||
ref="sidebar"
|
||||
:class="{
|
||||
'fixed top-0 hidden pt-12 lg:flex lg:w-60 xl:w-80 h-screen':
|
||||
mode === 'normal',
|
||||
'relative flex-1 flex flex-col w-full': mode === 'mobile',
|
||||
}"
|
||||
>
|
||||
<div class="flex-1 overflow-y-auto pl-4 lg:pl-0 pr-4 py-4">
|
||||
<ul>
|
||||
<li v-for="i in 29" :key="i">
|
||||
<Anchor
|
||||
:to="{ name: 'dashboard' }"
|
||||
class="group flex items-center mb-4 hover:no-underline"
|
||||
>
|
||||
<div
|
||||
class="flex items-center mr-4 px-2 py-2 rounded-md ring-1 ring-slate-900/5 shadow-sm group-hover:shadow group-hover:ring-slate-900/10 dark:ring-0 dark:shadow-none dark:group-hover:shadow-none dark:group-hover:highlight-white/10 group-hover:shadow-sky-200 dark:highlight-white/10"
|
||||
:class="{
|
||||
'text-white dark:text-white group-hover:bg-sky-500 bg-sky-500':
|
||||
i === 1,
|
||||
'text-slate-500 dark:text-gray-100 group-hover:bg-gray-200 bg-gray-100 dark:group-hover:bg-slate-600 dark:bg-slate-700':
|
||||
i !== 1,
|
||||
}"
|
||||
>
|
||||
<IconUil:apps class="text-xs" />
|
||||
</div>
|
||||
<span
|
||||
class="text-sm font-semibold capitalize"
|
||||
:class="{
|
||||
'font-extrabold text-sky-500 dark:text-sky-400': i === 1,
|
||||
}"
|
||||
>
|
||||
{{ $t('pages.dashboard.index.nav') }}
|
||||
</span>
|
||||
</Anchor>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user