buli
2023-07-14 e6068da47c1bef5517c9e5fdc8c726766867ad4e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<apex:page showHeader="false" sidebar="false" id="allPage" title="追溯周报">
    <apex:includeLightning />
 
    <div style="width:100%;height:100%;" id="RetrospectiveWeeklyReport" />
    <div id="auraErrorMessage"></div>
    <script>
        debugger
        $Lightning.use("c:RetrospectiveWeeklyReportApp", function () {
            $Lightning.createComponent("c:RetrospectiveWeeklyReport",
                {
                },
                "RetrospectiveWeeklyReport",
                function (cmp) {
                    console.log('Component created, do something cool here');
                });
        });
    </script>
</apex:page>