Get notified when someones posts a comment on a posting.
<k-checkbox v-bind="props" v-model="checked" /> Comments Get notified when someones posts a comment on a posting.
<k-checkbox v-bind="props" v-model="checked" inline-description />Get notified when someones posts a comment on a posting.
<k-checkbox v-bind="props" v-model="checked" right />Get notified when someones posts a comment on a posting.
<script setup lang="ts">
import { ref } from 'vue'
const checked = ref(true)
const label = 'Comments'
const description = 'Get notified when someones posts a comment on a posting.'
const props = { label, description }
</script>