mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-11 19:08:20 +00:00
21 lines
No EOL
376 B
Vue
21 lines
No EOL
376 B
Vue
<script setup lang="ts">
|
|
|
|
const props = defineModel<{
|
|
modelValue: boolean,
|
|
}>();
|
|
let { modelValue } = $(props);
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div @click="() => modelValue = !modelValue">
|
|
<i-material-symbols-check-box-outline v-if="modelValue"/>
|
|
<i-material-symbols-check-box-outline-blank v-else/>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
div {
|
|
cursor: pointer;
|
|
}
|
|
</style> |