primevue-mirror/apps/showcase/doc/speeddial/TooltipDoc.vue

180 lines
6.3 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
2023-10-21 10:32:03 +00:00
<p>Items display a tooltip on hover when a standalone <PrimeVueNuxtLink to="/tooltip">Tooltip</PrimeVueNuxtLink> is present with a target that matches the items.</p>
2023-02-28 08:29:30 +00:00
</DocSectionText>
<div class="card">
<div :style="{ position: 'relative', height: '350px' }">
2024-07-11 11:57:21 +00:00
<SpeedDial :model="items" direction="up" :style="{ position: 'absolute', right: 0, bottom: 0 }" :buttonProps="{ severity: 'help' }" :tooltipOptions="{ position: 'left' }" />
<SpeedDial :model="items" direction="up" :style="{ position: 'absolute', left: 0, bottom: 0 }" :buttonProps="{ severity: 'danger' }" :tooltipOptions="{ position: 'right' }" />
2023-02-28 08:29:30 +00:00
</div>
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
items: [
{
label: 'Add',
icon: 'pi pi-pencil',
command: () => {
2024-05-29 23:28:03 +00:00
this.$toast.add({ severity: 'info', summary: 'Add', detail: 'Data Added', life: 3000 });
2023-02-28 08:29:30 +00:00
}
},
{
label: 'Update',
icon: 'pi pi-refresh',
command: () => {
2024-05-29 23:28:03 +00:00
this.$toast.add({ severity: 'success', summary: 'Update', detail: 'Data Updated', life: 3000 });
2023-02-28 08:29:30 +00:00
}
},
{
label: 'Delete',
icon: 'pi pi-trash',
command: () => {
2024-05-29 23:28:03 +00:00
this.$toast.add({ severity: 'error', summary: 'Delete', detail: 'Data Deleted', life: 3000 });
2023-02-28 08:29:30 +00:00
}
},
{
label: 'Upload',
icon: 'pi pi-upload',
command: () => {
this.$router.push('/fileupload');
}
},
{
label: 'Vue Website',
icon: 'pi pi-external-link',
command: () => {
window.location.href = 'https://vuejs.org/';
}
}
],
code: {
2023-09-22 12:54:14 +00:00
basic: `
2024-07-11 11:57:21 +00:00
<SpeedDial :model="items" direction="up" :style="{ position: 'absolute', right: 0, bottom: 0 }" :buttonProps="{ severity: 'help' }" :tooltipOptions="{ position: 'left' }" />
<SpeedDial :model="items" direction="up" :style="{ position: 'absolute', left: 0, bottom: 0 }" :buttonProps="{ severity: 'danger' }" :tooltipOptions="{ position: 'right' }" />
2023-10-15 09:38:39 +00:00
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card">
<div :style="{ position: 'relative', height: '350px' }">
2024-07-11 11:57:21 +00:00
<SpeedDial :model="items" direction="up" :style="{ position: 'absolute', right: 0, bottom: 0 }" :buttonProps="{ severity: 'help' }" :tooltipOptions="{ position: 'left' }" />
<SpeedDial :model="items" direction="up" :style="{ position: 'absolute', left: 0, bottom: 0 }" :buttonProps="{ severity: 'danger' }" :tooltipOptions="{ position: 'right' }" />
2023-08-07 12:40:22 +00:00
<Toast />
2023-02-28 08:29:30 +00:00
</div>
</div>
</template>
<script>
export default {
data() {
return {
items: [
{
label: 'Add',
icon: 'pi pi-pencil',
command: () => {
2024-05-29 23:28:03 +00:00
this.$toast.add({ severity: 'info', summary: 'Add', detail: 'Data Added', life: 3000 });
2023-02-28 08:29:30 +00:00
}
},
{
label: 'Update',
icon: 'pi pi-refresh',
command: () => {
2024-05-29 23:28:03 +00:00
this.$toast.add({ severity: 'success', summary: 'Update', detail: 'Data Updated', life: 3000 });
2023-02-28 08:29:30 +00:00
}
},
{
label: 'Delete',
icon: 'pi pi-trash',
command: () => {
2024-05-29 23:28:03 +00:00
this.$toast.add({ severity: 'error', summary: 'Delete', detail: 'Data Deleted', life: 3000 });
2023-02-28 08:29:30 +00:00
}
},
{
label: 'Upload',
icon: 'pi pi-upload',
command: () => {
this.$router.push('/fileupload');
}
},
{
label: 'Vue Website',
icon: 'pi pi-external-link',
command: () => {
window.location.href = 'https://vuejs.org/';
}
}
]
}
}
};
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card">
<div :style="{ position: 'relative', height: '350px' }">
2024-07-11 11:57:21 +00:00
<SpeedDial :model="items" direction="up" :style="{ position: 'absolute', right: 0, bottom: 0 }" :buttonProps="{ severity: 'help' }" :tooltipOptions="{ position: 'left' }" />
<SpeedDial :model="items" direction="up" :style="{ position: 'absolute', left: 0, bottom: 0 }" :buttonProps="{ severity: 'danger' }" :tooltipOptions="{ position: 'right' }" />
2023-08-07 12:40:22 +00:00
<Toast />
2023-02-28 08:29:30 +00:00
</div>
</div>
</template>
<script setup>
import { ref } from 'vue';
import { useToast } from 'primevue/usetoast';
import { useRouter } from 'vue-router';
const toast = useToast();
const router = useRouter();
const items = ref([
{
label: 'Add',
icon: 'pi pi-pencil',
command: () => {
2024-05-29 23:28:03 +00:00
toast.add({ severity: 'info', summary: 'Add', detail: 'Data Added', life: 3000 });
2023-02-28 08:29:30 +00:00
}
},
{
label: 'Update',
icon: 'pi pi-refresh',
command: () => {
2024-05-29 23:28:03 +00:00
toast.add({ severity: 'success', summary: 'Update', detail: 'Data Updated', life: 3000 });
2023-02-28 08:29:30 +00:00
}
},
{
label: 'Delete',
icon: 'pi pi-trash',
command: () => {
2024-05-29 23:28:03 +00:00
toast.add({ severity: 'error', summary: 'Delete', detail: 'Data Deleted', life: 3000 });
2023-02-28 08:29:30 +00:00
}
},
{
label: 'Upload',
icon: 'pi pi-upload',
command: () => {
router.push('/fileupload');
}
},
{
label: 'Vue Website',
icon: 'pi pi-external-link',
command: () => {
window.location.href = 'https://vuejs.org/'
}
}
])
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>