113 lines
3.9 KiB
Vue
113 lines
3.9 KiB
Vue
|
<template>
|
||
|
<DocSectionText v-bind="$attrs">
|
||
|
<p>
|
||
|
A navigation menu is implemented using tabs without the panels where the content of a tab is provided by a route component like
|
||
|
<a href="https://router.vuejs.org/guide/essentials/nested-routes#Nested-Named-Routes" target="_blank" rel="noopener noreferrer">router-view</a>. For the purpose of this demo, <i>router-view</i> is not included.
|
||
|
</p>
|
||
|
</DocSectionText>
|
||
|
<div class="card">
|
||
|
<Tabs value="/dashboard">
|
||
|
<TabList>
|
||
|
<Tab v-for="tab in items" :key="tab.label" :value="tab.route" as="div" class="flex items-center gap-2">
|
||
|
<i :class="tab.icon" />
|
||
|
<span>{{ tab.label }}</span>
|
||
|
</Tab>
|
||
|
</TabList>
|
||
|
</Tabs>
|
||
|
</div>
|
||
|
<DocSectionCode :code="code" />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
items: [
|
||
|
{ route: '/dashboard', label: 'Dashboard', icon: 'pi pi-home' },
|
||
|
{ route: '/transactions', label: 'Transactions', icon: 'pi pi-chart-line' },
|
||
|
{ route: '/products', label: 'Products', icon: 'pi pi-list' },
|
||
|
{ route: '/messages', label: 'Messages', icon: 'pi pi-inbox' }
|
||
|
],
|
||
|
code: {
|
||
|
basic: `
|
||
|
<Tabs value="/dashboard">
|
||
|
<TabList>
|
||
|
<Tab v-for="tab in items" :key="tab.label" :value="tab.route">
|
||
|
<router-link v-if="tab.route" v-slot="{ href, navigate }" :to="tab.route" custom>
|
||
|
<a v-ripple :href="href" @click="navigate" class="flex items-center gap-2 text-inherit">
|
||
|
<i :class="tab.icon" />
|
||
|
<span>{{ tab.label }}</span>
|
||
|
</a>
|
||
|
</router-link>
|
||
|
</Tab>
|
||
|
</TabList>
|
||
|
</Tabs>
|
||
|
`,
|
||
|
options: `
|
||
|
<template>
|
||
|
<div class="card">
|
||
|
<Tabs value="/dashboard">
|
||
|
<TabList>
|
||
|
<Tab v-for="tab in items" :key="tab.label" :value="tab.route">
|
||
|
<router-link v-if="tab.route" v-slot="{ href, navigate }" :to="tab.route" custom>
|
||
|
<a v-ripple :href="href" @click="navigate" class="flex items-center gap-2 text-inherit">
|
||
|
<i :class="tab.icon" />
|
||
|
<span>{{ tab.label }}</span>
|
||
|
</a>
|
||
|
</router-link>
|
||
|
</Tab>
|
||
|
</TabList>
|
||
|
</Tabs>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
items: [
|
||
|
{ route: '/dashboard', label: 'Dashboard', icon: 'pi pi-home' },
|
||
|
{ route: '/transactions', label: 'Transactions', icon: 'pi pi-chart-line' },
|
||
|
{ route: '/products', label: 'Products', icon: 'pi pi-list' },
|
||
|
{ route: '/messages', label: 'Messages', icon: 'pi pi-inbox' }
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
<\/script>
|
||
|
`,
|
||
|
composition: `
|
||
|
<template>
|
||
|
<div class="card">
|
||
|
<Tabs value="/dashboard">
|
||
|
<TabList>
|
||
|
<Tab v-for="tab in items" :key="tab.label" :value="tab.route">
|
||
|
<router-link v-if="tab.route" v-slot="{ href, navigate }" :to="tab.route" custom>
|
||
|
<a v-ripple :href="href" @click="navigate" class="flex items-center gap-2 text-inherit">
|
||
|
<i :class="tab.icon" />
|
||
|
<span>{{ tab.label }}</span>
|
||
|
</a>
|
||
|
</router-link>
|
||
|
</Tab>
|
||
|
</TabList>
|
||
|
</Tabs>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { ref } from "vue";
|
||
|
|
||
|
const items = ref([
|
||
|
{ route: '/dashboard', label: 'Dashboard', icon: 'pi pi-home' },
|
||
|
{ route: '/transactions', label: 'Transactions', icon: 'pi pi-chart-line' },
|
||
|
{ route: '/products', label: 'Products', icon: 'pi pi-list' },
|
||
|
{ route: '/messages', label: 'Messages', icon: 'pi pi-inbox' }
|
||
|
]);
|
||
|
<\/script>
|
||
|
`
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
</script>
|