How to pass URL Parameters to Lightning LWC Component Tab from Visualforce Page in Salesforce?
Sample Code:Visualforce Page:<apex:page controller="SampleVFController"> <apex:form > <apex:commandButton value="Click" action="{!openLightningComponent}"/> </apex:form></apex:page>Apex Class:public class SampleVFController { public PageReference openLightningComponent() { PageReference pg = new PageReference( '/lightning/n/Sample_LWC' ); pg.setRedirect( true ....