primevue-mirror/apps/showcase/doc/tooltip/DelayDoc.vue

38 lines
1.1 KiB
Vue
Raw Normal View History

2023-04-09 15:12:17 +00:00
<template>
<DocSectionText v-bind="$attrs">
2024-10-31 17:41:14 +00:00
<p>Delays to the enter and leave events are defined with <i>showDelay</i> and <i>hideDelay</i> options respectively.</p>
2023-04-09 15:12:17 +00:00
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex flex-wrap justify-center">
2023-11-02 07:21:31 +00:00
<Button v-tooltip="{ value: 'Confirm to proceed', showDelay: 1000, hideDelay: 300 }" label="Save" />
2023-04-09 15:12:17 +00:00
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
code: {
2023-09-22 12:54:14 +00:00
basic: `
2023-11-02 07:21:31 +00:00
<Button v-tooltip="{ value: 'Confirm to proceed', showDelay: 1000, hideDelay: 300 }" label="Save" />
2023-10-15 09:38:39 +00:00
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex flex-wrap justify-center">
2023-11-02 07:21:31 +00:00
<Button v-tooltip="{ value: 'Confirm to proceed', showDelay: 1000, hideDelay: 300 }" label="Save" />
2023-04-09 15:12:17 +00:00
</div>
2023-10-15 09:38:39 +00:00
</template>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex flex-wrap justify-center">
2023-11-02 07:21:31 +00:00
<Button v-tooltip="{ value: 'Confirm to proceed', showDelay: 1000, hideDelay: 300 }" label="Save" />
2023-04-09 15:12:17 +00:00
</div>
2023-11-01 14:36:59 +00:00
</template>
`
2023-04-09 15:12:17 +00:00
}
};
}
};
</script>