23 lines
497 B
Vue
23 lines
497 B
Vue
<template>
|
|
<input type=checkbox tabindex=-1 :checked="store.selected.has(doc.key)" @click.stop
|
|
@change="ev => {
|
|
if ((ev.target as HTMLInputElement).checked) {
|
|
store.selected.add(doc.key)
|
|
} else {
|
|
store.selected.delete(doc.key)
|
|
}
|
|
}"
|
|
>
|
|
</template>
|
|
|
|
<script setup lang=ts>
|
|
import { useMainStore } from '@/stores/main'
|
|
import type { Doc } from '@/repositories/Document'
|
|
|
|
const props = defineProps<{
|
|
doc: Doc
|
|
}>()
|
|
const store = useMainStore()
|
|
|
|
</script>
|