Skip to content

⬅️ Back to Table of Contents

📄 onLongPress/component

📊 Analysis Summary

Metric Count
📦 Imports 8
📐 Interfaces 2
📑 Type Aliases 1

📚 Table of Contents

🛠️ File Location:

📂 packages/core/onLongPress/component.ts

📦 Imports

Name Source
OnLongPressOptions @vueuse/core
RenderableComponent @vueuse/core
UseOnLongPressReturn @vueuse/core
SlotsType vue
onLongPress @vueuse/core
defineComponent vue
h vue
shallowRef vue

Interfaces

OnLongPressProps

Interface Code
export interface OnLongPressProps extends RenderableComponent {
  options?: OnLongPressOptions
}

Properties

Name Type Optional Description
options OnLongPressOptions not shown

OnLongPressSlots

Interface Code
interface OnLongPressSlots {
  default: (data: UseOnLongPressReturn) => any
}

Properties

Name Type Optional Description
default (data: UseOnLongPressReturn) => any not shown

Type Aliases

OnLongPressEmits

type OnLongPressEmits = {
  trigger: (event: PointerEvent) => void
};

Generated by Syntax Scribe