19 lines
348 B
Vue
19 lines
348 B
Vue
<script setup lang="ts">
|
|
import MENU_IMAGE from "/assets/images/settings/top-screen/touch_screen/touch_screen.webp";
|
|
|
|
const props = defineProps<{
|
|
x: number;
|
|
y: number;
|
|
}>();
|
|
|
|
const [menuImage] = useImages(MENU_IMAGE);
|
|
|
|
useRender((ctx) => {
|
|
ctx.drawImage(menuImage!, props.x, props.y);
|
|
});
|
|
|
|
defineOptions({
|
|
render: () => null,
|
|
});
|
|
</script>
|