Which method of the NavigationMixin allows an LWC component to redirect the user to an external URL?
-
A
this[NavigationMixin.Navigate]({ type: 'standard__webPage', attributes: { url: 'https://...' } })
-
B
this.navigate('https://...')
-
C
NavigationMixin.redirect(this, 'https://...')
-
D
window.open('https://...') via the navigation module