正解:A,C,E
Lightning Web Components (LWCs) have access to a variety of resources in Salesforce. Below are the supported resources:
Static Resources (A):You can use static resources to reference JavaScript libraries, images, and other files needed in an LWC.
Reference:Static Resources in LWC
SVG Resources (C):LWCs can use custom SVG files for icons or other visual elements.
Reference:SVG Resources in LWC
Content Asset Files (E):Content asset files, like images or videos, stored in Salesforce can be accessed and used in LWC.
Reference:Using Content Assets in LWC
Incorrect Options:
B: All external libraries:Only libraries uploaded as static resources are supported, not directly external libraries.
D: Third-party web components:While supported, additional configuration is needed to use them effectively.