feat: change context menu from using cursor to pointer terminology

This commit is contained in:
SauceyRed 2025-07-30 17:08:23 +02:00
parent ecfa85c0ac
commit d1518d1001
Signed by: sauceyred
GPG key ID: 2BF92EB6D8A5CCA7
5 changed files with 9 additions and 9 deletions

View file

@ -1,7 +1,7 @@
<template>
<div>
<Banner v-if="banner" />
<ContextMenu v-if="contextMenu && contextMenu.show" :cursor-x="contextMenu.cursorX" :cursor-y="contextMenu.cursorY" :menu-items="contextMenu.items" />
<ContextMenu v-if="contextMenu && contextMenu.show" :pointer-x="contextMenu.pointerX" :pointer-y="contextMenu.pointerY" :menu-items="contextMenu.items" />
<NuxtPage :keepalive="true" />
</div>
</template>