Vue.js Setup
The library can also be used as a Vue component:
Install the package
Section titled “Install the package”npm install @open-iframe-resizer/vueImport the component
Section titled “Import the component”import { createApp } from "vue";import { IframeResizer } from "@open-iframe-resizer/vue";
createApp({ components: { IframeResizer }, template: ` <div> <IframeResizer src=""https://github.com" /> </div> `,}).mount("#app");Example
Section titled “Example”A full working project is also available here