|
@@ -16,7 +16,7 @@ export const Component = defineComponent({
|
|
|
},
|
|
|
setup(props) {
|
|
|
const { helper, controls , store} = useEditor();
|
|
|
- const { children } = useCompData<CompCardObj>(props.compId);
|
|
|
+ const comp = useCompData<CompCardObj>(props.compId);
|
|
|
const isStreamCard = helper.isStreamCard(props.compId);
|
|
|
|
|
|
const isShowSwiper = () => {
|
|
@@ -72,7 +72,7 @@ export const Component = defineComponent({
|
|
|
const showSwiper = isShowSwiper();
|
|
|
const containerStyles = getContainerStyles();
|
|
|
const containerScale = createScale();
|
|
|
-
|
|
|
+
|
|
|
return (
|
|
|
<div
|
|
|
class={cx(rootStyles, showSwiper && "swiper-slide")}
|
|
@@ -83,7 +83,7 @@ export const Component = defineComponent({
|
|
|
style={containerScale}
|
|
|
showMask={props.showMask}
|
|
|
>
|
|
|
- {children.default?.map((compId) => {
|
|
|
+ {comp.children.default?.map((compId) => {
|
|
|
const compItem = helper.findComp(compId) as DesignComp;
|
|
|
const Comp =
|
|
|
controls.compUICtrl.state.components.get(compItem?.compKey)
|