1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| <template>
| <lightning-card title={title} icon-name={iconName}>
| <lightning-layout multiple-rows="true" vertical-align="center">
| <lightning-layout-item
| padding="horizontal-medium"
| size="6"
| small-device-size="12"
| medium-device-size="12"
| large-device-size="6"
| >
| <iframe
| title={visualforceIframeTitle}
| src={visualforceUrl}
| width="100%"
| height={visualforceHeight}
| ></iframe>
| </lightning-layout-item>
| <lightning-layout-item
| padding="horizontal-medium"
| size="6"
| small-device-size="12"
| medium-device-size="12"
| large-device-size="6"
| >
| <slot name="lwc"></slot>
| </lightning-layout-item>
| </lightning-layout>
| <c-view-vf-lwc-source
| visualforce-source={visualforceSource}
| lwc-source={lwcSource}
| slot="footer"
| >
| <slot></slot>
| </c-view-vf-lwc-source>
| </lightning-card>
| </template>
|
|