tethys.backend/resources/js/Components/TableCheckboxCell.vue
Arno Kaimbacher a7142f694f
All checks were successful
CI Pipeline / japa-tests (push) Successful in 51s
- prettier formatting
- npm updates
- new SearchMap.vue component
2023-10-31 15:38:43 +01:00

28 lines
498 B
Vue

<script setup>
import { ref, watch } from 'vue';
defineProps({
type: {
type: String,
default: 'td',
},
});
const emit = defineEmits(['checked']);
const checked = ref(false);
watch(checked, (newVal) => {
emit('checked', newVal);
});
</script>
<template>
<component :is="type" class="lg:w-1">
<label class="checkbox">
<input v-model="checked" type="checkbox" />
<span class="check" />
</label>
</component>
</template>