An iframe module to show any page into Open Web Desktop
Try it out, just open the terminal and type "iframe"
It's a demo module that shows how to create an iframe window using the <WindowIframe> component.
- Move to your client folder, then
# Enter modules app directory cd src/modules/app/ # Clone this repository git clone https://github.com/hacklover/owd-app-iframe iframe
- Define this module in
owd-client/client.extensions.ts
import AboutModule from "@owd-client/core/src/modules/app/about"; import DebugModule from "@owd-client/core/src/modules/app/debug"; import IframeModule from "~/modules/app/iframe/client"; export default { app: { modules: [ AboutModule, DebugModule, IframeModule, ] }, ...
- Open Web Desktop client v2.0.0-beta.1
This project is released under the MIT License