primevue-mirror/apps/showcase/doc/menubar/RouterDoc.vue

222 lines
6.9 KiB
Vue
Raw Normal View History

2023-08-30 13:33:42 +00:00
<template>
<DocSectionText v-bind="$attrs">
2023-11-07 14:22:54 +00:00
<p>Items with navigation are defined with templating to be able to use a router link component, an external link or programmatic navigation.</p>
2023-08-30 13:33:42 +00:00
</DocSectionText>
2023-11-07 14:22:54 +00:00
<div class="card">
2023-08-30 13:33:42 +00:00
<Menubar :model="items">
2023-11-07 14:22:54 +00:00
<template #item="{ item, props, hasSubmenu }">
<router-link v-if="item.route" v-slot="{ href, navigate }" :to="item.route" custom>
<a v-ripple :href="href" v-bind="props.action" @click="navigate">
<span :class="item.icon" />
2024-10-16 09:36:52 +00:00
<span>{{ item.label }}</span>
2023-08-30 13:33:42 +00:00
</a>
</router-link>
2023-11-07 14:22:54 +00:00
<a v-else v-ripple :href="item.url" :target="item.target" v-bind="props.action">
<span :class="item.icon" />
2024-10-16 09:36:52 +00:00
<span>{{ item.label }}</span>
<span v-if="hasSubmenu" class="pi pi-fw pi-angle-down" />
2023-08-30 13:33:42 +00:00
</a>
</template>
</Menubar>
</div>
2024-01-30 08:16:35 +00:00
<DocSectionCode :code="code" hideStackBlitz />
2023-08-30 13:33:42 +00:00
</template>
<script>
export default {
data() {
return {
items: [
{
2023-11-07 14:22:54 +00:00
label: 'Router',
icon: 'pi pi-palette',
2023-08-30 13:33:42 +00:00
items: [
{
2023-11-07 14:22:54 +00:00
label: 'Styled',
2024-05-07 19:25:46 +00:00
route: '/theming/styled'
2023-08-30 13:33:42 +00:00
},
{
2023-11-07 14:22:54 +00:00
label: 'Unstyled',
2024-05-02 10:42:38 +00:00
route: '/theming/unstyled'
2023-08-30 13:33:42 +00:00
}
]
},
{
2023-11-07 14:22:54 +00:00
label: 'Programmatic',
icon: 'pi pi-link',
command: () => {
2023-12-26 18:38:03 +00:00
this.$router.push('/introduction');
2023-11-07 14:22:54 +00:00
}
2023-08-30 13:33:42 +00:00
},
{
2023-11-07 14:22:54 +00:00
label: 'External',
icon: 'pi pi-home',
2023-08-30 13:33:42 +00:00
items: [
{
2023-11-07 14:22:54 +00:00
label: 'Vue.js',
url: 'https://vuejs.org/'
2023-08-30 13:33:42 +00:00
},
{
2023-11-07 14:22:54 +00:00
label: 'Vite.js',
2024-04-30 17:45:38 +00:00
url: 'https://vitejs.dev/'
2023-08-30 13:33:42 +00:00
}
]
}
],
code: {
2023-09-22 12:54:14 +00:00
basic: `
<Menubar :model="items">
2023-11-07 14:22:54 +00:00
<template #item="{ item, props, hasSubmenu }">
<router-link v-if="item.route" v-slot="{ href, navigate }" :to="item.route" custom>
<a v-ripple :href="href" v-bind="props.action" @click="navigate">
<span :class="item.icon" />
2024-10-16 09:36:52 +00:00
<span>{{ item.label }}</span>
2023-08-30 13:33:42 +00:00
</a>
</router-link>
2023-11-07 14:22:54 +00:00
<a v-else v-ripple :href="item.url" :target="item.target" v-bind="props.action">
<span :class="item.icon" />
2024-10-16 09:36:52 +00:00
<span>{{ item.label }}</span>
<span v-if="hasSubmenu" class="pi pi-fw pi-angle-down" />
2023-08-30 13:33:42 +00:00
</a>
</template>
2023-10-15 09:38:39 +00:00
</Menubar>
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-11-07 14:22:54 +00:00
<div class="card">
2023-08-30 13:33:42 +00:00
<Menubar :model="items">
2023-11-07 14:22:54 +00:00
<template #item="{ item, props, hasSubmenu }">
<router-link v-if="item.route" v-slot="{ href, navigate }" :to="item.route" custom>
<a v-ripple :href="href" v-bind="props.action" @click="navigate">
<span :class="item.icon" />
2024-10-16 09:36:52 +00:00
<span>{{ item.label }}</span>
2023-08-30 13:33:42 +00:00
</a>
</router-link>
2023-11-07 14:22:54 +00:00
<a v-else v-ripple :href="item.url" :target="item.target" v-bind="props.action">
<span :class="item.icon" />
2024-10-16 09:36:52 +00:00
<span>{{ item.label }}</span>
<span v-if="hasSubmenu" class="pi pi-fw pi-angle-down" />
2023-08-30 13:33:42 +00:00
</a>
</template>
</Menubar>
</div>
</template>
<script>
export default {
data() {
return {
items: [
{
2023-11-07 14:22:54 +00:00
label: 'Router',
icon: 'pi pi-palette',
2023-08-30 13:33:42 +00:00
items: [
{
2023-11-07 14:22:54 +00:00
label: 'Styled',
2024-05-07 19:25:46 +00:00
route: '/theming/styled'
2023-08-30 13:33:42 +00:00
},
{
2023-11-07 14:22:54 +00:00
label: 'Unstyled',
2024-05-02 10:42:38 +00:00
route: '/theming/unstyled'
2023-08-30 13:33:42 +00:00
}
]
},
{
2023-11-07 14:22:54 +00:00
label: 'Programmatic',
icon: 'pi pi-link',
command: () => {
2023-12-26 18:38:03 +00:00
this.$router.push('/introduction');
2023-11-07 14:22:54 +00:00
}
2023-08-30 13:33:42 +00:00
},
{
2023-11-07 14:22:54 +00:00
label: 'External',
icon: 'pi pi-home',
2023-08-30 13:33:42 +00:00
items: [
{
2023-11-07 14:22:54 +00:00
label: 'Vue.js',
url: 'https://vuejs.org/'
2023-08-30 13:33:42 +00:00
},
{
2023-11-07 14:22:54 +00:00
label: 'Vite.js',
2024-04-30 17:45:38 +00:00
url: 'https://vitejs.dev/'
2023-08-30 13:33:42 +00:00
}
]
}
]
};
}
};
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2023-11-07 14:22:54 +00:00
<div class="card">
2023-08-30 13:33:42 +00:00
<Menubar :model="items">
2023-11-07 14:22:54 +00:00
<template #item="{ item, props, hasSubmenu }">
<router-link v-if="item.route" v-slot="{ href, navigate }" :to="item.route" custom>
<a v-ripple :href="href" v-bind="props.action" @click="navigate">
<span :class="item.icon" />
2024-10-16 09:36:52 +00:00
<span>{{ item.label }}</span>
2023-08-30 13:33:42 +00:00
</a>
</router-link>
2023-11-07 14:22:54 +00:00
<a v-else v-ripple :href="item.url" :target="item.target" v-bind="props.action">
<span :class="item.icon" />
2024-10-16 09:36:52 +00:00
<span>{{ item.label }}</span>
<span v-if="hasSubmenu" class="pi pi-fw pi-angle-down" />
2023-08-30 13:33:42 +00:00
</a>
</template>
</Menubar>
</div>
</template>
<script setup>
import { ref } from "vue";
2024-02-13 10:43:23 +00:00
import { useRouter } from 'vue-router';
2023-11-07 14:22:54 +00:00
const router = useRouter();
2023-08-30 13:33:42 +00:00
const items = ref([
{
2023-11-07 14:22:54 +00:00
label: 'Router',
icon: 'pi pi-palette',
2023-08-30 13:33:42 +00:00
items: [
{
2023-11-07 14:22:54 +00:00
label: 'Styled',
2024-05-07 19:25:46 +00:00
route: '/theming/styled'
2023-08-30 13:33:42 +00:00
},
{
2023-11-07 14:22:54 +00:00
label: 'Unstyled',
2024-05-02 10:42:38 +00:00
route: '/theming/unstyled'
2023-08-30 13:33:42 +00:00
}
]
},
{
2023-11-07 14:22:54 +00:00
label: 'Programmatic',
icon: 'pi pi-link',
command: () => {
2023-12-26 18:38:03 +00:00
router.push('/introduction');
2023-11-07 14:22:54 +00:00
}
2023-08-30 13:33:42 +00:00
},
{
2023-11-07 14:22:54 +00:00
label: 'External',
icon: 'pi pi-home',
2023-08-30 13:33:42 +00:00
items: [
{
2023-11-07 14:22:54 +00:00
label: 'Vue.js',
url: 'https://vuejs.org/'
2023-08-30 13:33:42 +00:00
},
{
2023-11-07 14:22:54 +00:00
label: 'Vite.js',
2024-04-30 17:45:38 +00:00
url: 'https://vitejs.dev/'
2023-08-30 13:33:42 +00:00
}
]
}
]);
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-08-30 13:33:42 +00:00
}
};
}
};
</script>