import { defineComponent, ref, computed } from 'vue'; import { useTranslation } from '../../translations'; import { BCMSIcon, BCMSMarkdownDisplay } from '..'; const component = defineComponent({ props: { class: { type: String, default: '', }, label: { type: String, default: '', }, content: { type: String, required: true, }, }, emits: { input: (_: string) => { return true; }, 'update:modelValue': (_?: string) => { return true; }, }, setup(props) { const showInstructions = ref(false); const translations = computed(() => { return useTranslation(); }); return () => { return (
{showInstructions.value && ( )}
); }; }, }); export default component;