Menu demo updates
parent
958b347f7c
commit
5a5ae8be0b
|
@ -31,21 +31,6 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Navigate',
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: 'Vue Website',
|
|
||||||
icon: 'pi pi-external-link',
|
|
||||||
url: 'https://vuejs.org/'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Router',
|
|
||||||
icon: 'pi pi-upload',
|
|
||||||
to: '/fileupload'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
code: {
|
code: {
|
||||||
|
@ -81,21 +66,6 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Navigate',
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: 'Vue Website',
|
|
||||||
icon: 'pi pi-external-link',
|
|
||||||
url: 'https://vuejs.org/'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Router',
|
|
||||||
icon: 'pi pi-upload',
|
|
||||||
to: '/fileupload'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -133,21 +103,6 @@ const items = ref([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Navigate',
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: 'Vue Website',
|
|
||||||
icon: 'pi pi-external-link',
|
|
||||||
url: 'https://vuejs.org/'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Router',
|
|
||||||
icon: 'pi pi-upload',
|
|
||||||
to: '/fileupload'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
<\/script>`
|
<\/script>`
|
||||||
|
|
|
@ -32,21 +32,6 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Navigate',
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: 'Vue Website',
|
|
||||||
icon: 'pi pi-external-link',
|
|
||||||
url: 'https://vuejs.org/'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Router',
|
|
||||||
icon: 'pi pi-upload',
|
|
||||||
to: '/fileupload'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
code: {
|
code: {
|
||||||
|
@ -84,21 +69,6 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Navigate',
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: 'Vue Website',
|
|
||||||
icon: 'pi pi-external-link',
|
|
||||||
url: 'https://vuejs.org/'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Router',
|
|
||||||
icon: 'pi pi-upload',
|
|
||||||
to: '/fileupload'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -146,21 +116,6 @@ const items = ref([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Navigate',
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: 'Vue Website',
|
|
||||||
icon: 'pi pi-external-link',
|
|
||||||
url: 'https://vuejs.org/'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Router',
|
|
||||||
icon: 'pi pi-upload',
|
|
||||||
to: '/fileupload'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,217 @@
|
||||||
|
<template>
|
||||||
|
<DocSectionText v-bind="$attrs"> </DocSectionText>
|
||||||
|
<div class="card flex justify-content-center">
|
||||||
|
<Menu :model="items">
|
||||||
|
<template #item="{ label, item, props }">
|
||||||
|
<router-link v-if="item.to" v-slot="routerProps" :to="item.to" custom>
|
||||||
|
<a :href="routerProps.href" v-bind="props.action">
|
||||||
|
<span v-bind="props.icon" />
|
||||||
|
<span v-bind="props.label">{{ label }}</span>
|
||||||
|
</a>
|
||||||
|
</router-link>
|
||||||
|
<a v-else :href="item.url" :target="item.target" v-bind="props.action">
|
||||||
|
<span v-bind="props.icon" />
|
||||||
|
<span v-bind="props.label">{{ label }}</span>
|
||||||
|
</a>
|
||||||
|
</template>
|
||||||
|
</Menu>
|
||||||
|
</div>
|
||||||
|
<DocSectionCode :code="code" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
label: 'Options',
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
label: 'Update',
|
||||||
|
icon: 'pi pi-refresh',
|
||||||
|
|
||||||
|
command: () => {
|
||||||
|
this.$toast.add({ severity: 'success', summary: 'Updated', detail: 'Data Updated', life: 3000 });
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Delete',
|
||||||
|
icon: 'pi pi-times',
|
||||||
|
command: () => {
|
||||||
|
this.$toast.add({ severity: 'warn', summary: 'Delete', detail: 'Data Deleted', life: 3000 });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Navigate',
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
label: 'Vue Website',
|
||||||
|
icon: 'pi pi-external-link',
|
||||||
|
url: 'https://vuejs.org/',
|
||||||
|
target: '_blank'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Upload',
|
||||||
|
icon: 'pi pi-upload',
|
||||||
|
command: () => {
|
||||||
|
this.$toast.add({ severity: 'success', summary: 'Upload', detail: 'File Uploaded', life: 3000 });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
code: {
|
||||||
|
basic: `<Menu :model="items">
|
||||||
|
<template #item="{ label, item, props }">
|
||||||
|
<router-link v-if="item.to" v-slot="routerProps" :to="item.to" custom>
|
||||||
|
<a :href="routerProps.href" v-bind="props.action">
|
||||||
|
<span v-bind="props.icon" />
|
||||||
|
<span v-bind="props.label">{{ label }}</span>
|
||||||
|
</a>
|
||||||
|
</router-link>
|
||||||
|
<a v-else :href="item.url" v-bind="props.action">
|
||||||
|
<span v-bind="props.icon" />
|
||||||
|
<span v-bind="props.label">{{ label }}</span>
|
||||||
|
</a>
|
||||||
|
</template>
|
||||||
|
</Menu>`,
|
||||||
|
options: `<template>
|
||||||
|
<div class="card flex justify-content-center">
|
||||||
|
<Menu :model="items">
|
||||||
|
<template #item="{ label, item, props }">
|
||||||
|
<router-link v-if="item.to" v-slot="routerProps" :to="item.to" custom>
|
||||||
|
<a :href="routerProps.href" v-bind="props.action">
|
||||||
|
<span v-bind="props.icon" />
|
||||||
|
<span v-bind="props.label">{{ label }}</span>
|
||||||
|
</a>
|
||||||
|
</router-link>
|
||||||
|
<a v-else :href="item.url" v-bind="props.action">
|
||||||
|
<span v-bind="props.icon" />
|
||||||
|
<span v-bind="props.label">{{ label }}</span>
|
||||||
|
</a>
|
||||||
|
</template>
|
||||||
|
</Menu>
|
||||||
|
<Toast />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
label: 'Options',
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
label: 'Update',
|
||||||
|
icon: 'pi pi-refresh',
|
||||||
|
|
||||||
|
command: () => {
|
||||||
|
this.$toast.add({ severity: 'success', summary: 'Updated', detail: 'Data Updated', life: 3000 });
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Delete',
|
||||||
|
icon: 'pi pi-times',
|
||||||
|
command: () => {
|
||||||
|
this.$toast.add({ severity: 'warn', summary: 'Delete', detail: 'Data Deleted', life: 3000 });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Navigate',
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
label: 'Vue Website',
|
||||||
|
icon: 'pi pi-external-link',
|
||||||
|
url: 'https://vuejs.org/',
|
||||||
|
target: '_blank',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Upload',
|
||||||
|
icon: 'pi pi-upload',
|
||||||
|
command: () => {
|
||||||
|
this.$toast.add({ severity: 'success', summary: 'Upload', detail: 'File Uploaded', life: 3000 });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
<\/script>`,
|
||||||
|
composition: `<template>
|
||||||
|
<div class="card flex justify-content-center">
|
||||||
|
<Menu :model="items">
|
||||||
|
<template #item="{ label, item, props }">
|
||||||
|
<router-link v-if="item.to" v-slot="routerProps" :to="item.to" custom>
|
||||||
|
<a :href="routerProps.href" v-bind="props.action">
|
||||||
|
<span v-bind="props.icon" />
|
||||||
|
<span v-bind="props.label">{{ label }}</span>
|
||||||
|
</a>
|
||||||
|
</router-link>
|
||||||
|
<a v-else :href="item.url" v-bind="props.action">
|
||||||
|
<span v-bind="props.icon" />
|
||||||
|
<span v-bind="props.label">{{ label }}</span>
|
||||||
|
</a>
|
||||||
|
</template>
|
||||||
|
</Menu>
|
||||||
|
<Toast />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { ref } from "vue";
|
||||||
|
|
||||||
|
const items = ref(items: [
|
||||||
|
{
|
||||||
|
label: 'Options',
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
label: 'Update',
|
||||||
|
icon: 'pi pi-refresh',
|
||||||
|
|
||||||
|
command: () => {
|
||||||
|
this.$toast.add({ severity: 'success', summary: 'Updated', detail: 'Data Updated', life: 3000 });
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Delete',
|
||||||
|
icon: 'pi pi-times',
|
||||||
|
command: () => {
|
||||||
|
this.$toast.add({ severity: 'warn', summary: 'Delete', detail: 'Data Deleted', life: 3000 });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Navigate',
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
label: 'Vue Website',
|
||||||
|
icon: 'pi pi-external-link',
|
||||||
|
url: 'https://vuejs.org/',
|
||||||
|
target: '_blank',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Upload',
|
||||||
|
icon: 'pi pi-upload',
|
||||||
|
command: () => {
|
||||||
|
this.$toast.add({ severity: 'success', summary: 'Upload', detail: 'File Uploaded', life: 3000 });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
<\/script>`
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
|
@ -13,6 +13,13 @@
|
||||||
</div>
|
</div>
|
||||||
</button>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
|
<template #item="{ item, label, props }">
|
||||||
|
<a class="flex" v-bind="props.action">
|
||||||
|
<span v-bind="props.icon" />
|
||||||
|
<span v-bind="props.label">{{ label }}</span>
|
||||||
|
<Badge v-if="item.badge" class="ml-auto" :value="item.badge" />
|
||||||
|
</a>
|
||||||
|
</template>
|
||||||
<template #end>
|
<template #end>
|
||||||
<button class="w-full p-link flex align-items-center p-2 pl-4 text-color hover:surface-200 border-noround">
|
<button class="w-full p-link flex align-items-center p-2 pl-4 text-color hover:surface-200 border-noround">
|
||||||
<i class="pi pi-sign-out" />
|
<i class="pi pi-sign-out" />
|
||||||
|
@ -28,7 +35,19 @@
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
items: [{ separator: true }, { label: 'Profile', icon: 'pi pi-fw pi-user' }, { label: 'Settings', icon: 'pi pi-fw pi-cog' }, { separator: true }],
|
items: [
|
||||||
|
{ separator: true },
|
||||||
|
{
|
||||||
|
label: 'Profile',
|
||||||
|
icon: 'pi pi-fw pi-user'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Settings',
|
||||||
|
icon: 'pi pi-fw pi-cog',
|
||||||
|
badge: 2
|
||||||
|
},
|
||||||
|
{ separator: true }
|
||||||
|
],
|
||||||
code: {
|
code: {
|
||||||
basic: `<Menu :model="items">
|
basic: `<Menu :model="items">
|
||||||
<template #start>
|
<template #start>
|
||||||
|
@ -40,6 +59,13 @@ export default {
|
||||||
</div>
|
</div>
|
||||||
</button>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
|
<template #item="{ item, label, props }">
|
||||||
|
<a class="flex" v-bind="props.action">
|
||||||
|
<span v-bind="props.icon" />
|
||||||
|
<span v-bind="props.label">{{ label }}</span>
|
||||||
|
<Badge v-if="item.badge" class="ml-auto" :value="item.badge" />
|
||||||
|
</a>
|
||||||
|
</template>
|
||||||
<template #end>
|
<template #end>
|
||||||
<button class="w-full p-link flex align-items-center p-2 pl-4 text-color hover:surface-200 border-noround">
|
<button class="w-full p-link flex align-items-center p-2 pl-4 text-color hover:surface-200 border-noround">
|
||||||
<i class="pi pi-sign-out" />
|
<i class="pi pi-sign-out" />
|
||||||
|
@ -59,6 +85,13 @@ export default {
|
||||||
</div>
|
</div>
|
||||||
</button>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
|
<template #item="{ item, label, props }">
|
||||||
|
<a class="flex" v-bind="props.action">
|
||||||
|
<span v-bind="props.icon" />
|
||||||
|
<span v-bind="props.label">{{ label }}</span>
|
||||||
|
<Badge v-if="item.badge" class="ml-auto" :value="item.badge" />
|
||||||
|
</a>
|
||||||
|
</template>
|
||||||
<template #end>
|
<template #end>
|
||||||
<button class="w-full p-link flex align-items-center p-2 pl-4 text-color hover:surface-200 border-noround">
|
<button class="w-full p-link flex align-items-center p-2 pl-4 text-color hover:surface-200 border-noround">
|
||||||
<i class="pi pi-sign-out" />
|
<i class="pi pi-sign-out" />
|
||||||
|
@ -76,8 +109,15 @@ export default {
|
||||||
return {
|
return {
|
||||||
items: [
|
items: [
|
||||||
{ separator: true },
|
{ separator: true },
|
||||||
{ label: 'Profile', icon: 'pi pi-fw pi-user' },
|
{
|
||||||
{ label: 'Settings', icon: 'pi pi-fw pi-cog' },
|
label: 'Profile',
|
||||||
|
icon: 'pi pi-fw pi-user'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Settings',
|
||||||
|
icon: 'pi pi-fw pi-cog',
|
||||||
|
badge: 2
|
||||||
|
},
|
||||||
{ separator: true }
|
{ separator: true }
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -101,6 +141,13 @@ export default {
|
||||||
</div>
|
</div>
|
||||||
</button>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
|
<template #item="{ item, label, props }">
|
||||||
|
<a class="flex" v-bind="props.action">
|
||||||
|
<span v-bind="props.icon" />
|
||||||
|
<span v-bind="props.label">{{ label }}</span>
|
||||||
|
<Badge v-if="item.badge" class="ml-auto" :value="item.badge" />
|
||||||
|
</a>
|
||||||
|
</template>
|
||||||
<template #end>
|
<template #end>
|
||||||
<button class="w-full p-link flex align-items-center p-2 pl-4 text-color hover:surface-200 border-noround">
|
<button class="w-full p-link flex align-items-center p-2 pl-4 text-color hover:surface-200 border-noround">
|
||||||
<i class="pi pi-sign-out" />
|
<i class="pi pi-sign-out" />
|
||||||
|
@ -118,8 +165,15 @@ import { useToast } from "primevue/usetoast";
|
||||||
|
|
||||||
const items = ref([
|
const items = ref([
|
||||||
{ separator: true },
|
{ separator: true },
|
||||||
{ label: 'Profile', icon: 'pi pi-fw pi-user' },
|
{
|
||||||
{ label: 'Settings', icon: 'pi pi-fw pi-cog' },
|
label: 'Profile',
|
||||||
|
icon: 'pi pi-fw pi-user'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Settings',
|
||||||
|
icon: 'pi pi-fw pi-cog',
|
||||||
|
badge: 2
|
||||||
|
},
|
||||||
{ separator: true }
|
{ separator: true }
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue