Skip to content

Instantly share code, notes, and snippets.

@svierk
Last active November 18, 2023 14:05
Show Gist options
  • Save svierk/624b37fdd67bebfd8c760773c7c3b34e to your computer and use it in GitHub Desktop.
Save svierk/624b37fdd67bebfd8c760773c7c3b34e to your computer and use it in GitHub Desktop.
JS code for iFrame LWC
import { api, LightningElement } from 'lwc';
export default class IFrame extends LightningElement {
@api height = '500px';
@api sandbox = '';
@api url = '';
@api width = '100%';
renderedCallback() {
if (this.sandbox) {
const element = this.template.querySelector('iframe');
element.sandbox = this.sandbox;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment