import type { BCMSPlugin } from '@becomes/cms-sdk/types'; import { defineComponent, type PropType } from 'vue'; const component = defineComponent({ props: { plugin: { type: Object as PropType, required: true, }, }, setup(props) { return () => (
{JSON.stringify(props.plugin, null, ' ')}
); }, }); export default component;