1
0
Fork 0
mirror of https://github.com/haselkern/Minecraft-ArmorStand.git synced 2025-05-17 15:05:33 +00:00
Minecraft-ArmorStand/src/components/LockSlotCheckBox.vue

11 lines
No EOL
308 B
Vue

<template>
<input type="checkbox" @click="armorstand.lockFlags ^= value" :checked="Boolean(armorstand.lockFlags & value)" />
</template>
<script>
// This checkbox is a helper for toggling the binary flag "value" in "armorstand.lockFlags"
export default {
props: ["armorstand", "value"],
}
</script>