import { computed } from 'vue' import { uniqueId } from 'lodash-es' export const SwitchInput = ({ modelValue }: { modelValue: boolean }) => { vineEmits([ 'input', 'update:model-value' ]) const id = computed(() => uniqueId('switch-')) return vine` ` }