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

38 lines
1.0 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
2023-11-02 07:21:31 +00:00
<p>Event to display the tooltip is defined as a modifier, default event is hover.</p>
2023-02-28 08:29:30 +00:00
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex flex-wrap justify-center gap-2">
2023-11-02 07:21:31 +00:00
<InputText v-tooltip.focus.top="'Enter your username'" type="text" placeholder="Focus" />
2023-02-28 08:29:30 +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
<InputText v-tooltip.focus.top="'Enter your username'" type="text" placeholder="Focus" />
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
<InputText v-tooltip.focus.top="'Enter your username'" type="text" placeholder="Focus" />
2023-02-28 08:29:30 +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
<InputText v-tooltip.focus.top="'Enter your username'" type="text" placeholder="Focus" />
2023-02-28 08:29:30 +00:00
</div>
2023-11-01 14:36:59 +00:00
</template>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>