Skip to content

Commit

Permalink
docs(context-menu): add missing @vueuse/core imports
Browse files Browse the repository at this point in the history
Resolves #1762
  • Loading branch information
benjamincanac committed May 10, 2024
1 parent 581b470 commit fab9cbe
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/components/content/examples/ContextMenuExample.vue
@@ -1,4 +1,6 @@
<script setup lang="ts">
import { useMouse, useWindowScroll } from '@vueuse/core'
const { x, y } = useMouse()
const { y: windowY } = useWindowScroll()
Expand Down
2 changes: 2 additions & 0 deletions docs/components/content/examples/ContextMenuExampleArrow.vue
@@ -1,4 +1,6 @@
<script setup lang="ts">
import { useMouse, useWindowScroll } from '@vueuse/core'
const { x, y } = useMouse()
const { y: windowY } = useWindowScroll()
Expand Down
2 changes: 2 additions & 0 deletions docs/components/content/examples/ContextMenuExampleOffset.vue
@@ -1,4 +1,6 @@
<script setup lang="ts">
import { useMouse, useWindowScroll } from '@vueuse/core'
const { x, y } = useMouse()
const { y: windowY } = useWindowScroll()
Expand Down
@@ -1,4 +1,6 @@
<script setup lang="ts">
import { useMouse, useWindowScroll } from '@vueuse/core'
const { x, y } = useMouse()
const { y: windowY } = useWindowScroll()
Expand Down

0 comments on commit fab9cbe

Please sign in to comment.