import { computed, defineComponent } from 'vue'; import { useTranslation } from '../../translations'; import { BCMSToggleInput } from '../input'; import { DefaultComponentProps } from '../_default'; const component = defineComponent({ props: { ...DefaultComponentProps, }, setup() { const translations = computed(() => { return useTranslation(); }); return () => (