primevue-mirror/apps/showcase/doc/tooltip/pt/PTViewer.vue

23 lines
493 B
Vue
Raw Normal View History

2024-09-16 10:23:30 +00:00
<template>
2024-09-20 12:22:44 +00:00
<DocPTViewer :docs="docs">
2024-09-16 10:23:30 +00:00
<Button v-tooltip="{ value: 'Confirm to proceed', hideDelay: 300000 }" severity="secondary" label="Tooltip" />
</DocPTViewer>
</template>
<script>
import { getPTOptions } from '@/components/doc/helpers';
export default {
data() {
return {
2024-09-20 12:22:44 +00:00
docs: [
2024-09-16 10:23:30 +00:00
{
data: getPTOptions('Tooltip'),
key: 'Tooltip'
}
]
};
}
};
</script>