This commit is contained in:
2024-04-26 16:08:04 +02:00
parent 6e9077404a
commit d0816f9fc9
9 changed files with 169 additions and 65 deletions
+3 -1
View File
@@ -9,12 +9,14 @@ export interface Props {
const props = defineProps<Props>()
const emit = defineEmits(["click"])
const buttonsElement = ref<HTMLElement | null>(null)
const rightClicked = ref(false)
function cardClick() {
if (props.data == null) return
console.log(JSON.parse(JSON.stringify(props.data.effects)))
emit("click")
}
function contextmenu(e: MouseEvent) {