You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vite-vue3-lowcode/preview/views/comp-render.tsx

35 lines
900 B

/*
* @Author:
* @Date: 2021-05-04 05:36:58
* @LastEditTime: 2021-06-24 00:36:24
* @LastEditors:
* @Description:
* @FilePath: \vite-vue3-lowcode\src\visual-editor\components\simulator-editor\comp-render.tsx
*/
import { defineComponent, PropType } from 'vue'
import { VisualEditorBlockData, VisualEditorConfig } from '@/visual-editor/visual-editor.utils'
export default defineComponent({
name: 'CompRender',
props: {
element: {
type: Object as PropType<VisualEditorBlockData>,
default: () => ({})
},
config: {
type: Object as PropType<VisualEditorConfig>,
default: () => ({})
}
},
setup(props) {
return () =>
props.config.componentMap[props.element.componentKey].render({
size: {},
props: props.element.props || {},
model: {},
block: props.element,
custom: {}
})
}
})