FUYU
2023-12-13 4488f711dbc01a8db6753907cae2ef4021dede68
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<template>
    <c-example-wrapper
        icon-name="standard:account"
        lwc="viewRecord"
        title="View Record"
        visualforce="viewRecord"
        record-id={recordId}
        visualforce-height="170px"
    >
        <c-view-record record-id={recordId} slot="lwc"></c-view-record>
 
        <!-- prettier-ignore -->
        <p>
            Use <a target="_blank" href="https://developer.salesforce.com/docs/component-library/bundle/lightning-record-form">
            lightning-record-form</a>  in view mode to read records as first option.
            Use <a target="_blank" href="https://developer.salesforce.com/docs/component-library/bundle/lightning-record-view-form">
            lightning-record-view-form</a> if you want to use a custom layout.
        </p>
    </c-example-wrapper>
</template>