Replies: 1 comment
-
I am facing a very similar question. In Electron, one can create sub-windows from JavaScript via What did you end up doing @tleyden? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm creating an OSX Tauri + Vue.js app with multiple windows that will be accessible from the menu bar, like so:
Here "Show window" will just show the main window that corresponds to
index.html
. The "Config" window will be a completely separate window.When adding the conf window for example, I added the following additional files:
index_config.html
(copy/paste fromindex.html
)main_config.ts
(copy/paste frommain.ts
)AppConfig.vue
(copy/paste fromApp.vue
)Is this what people normally do for each new window being added in their Tauri app? Are there any examples of multi-window Tauri apps with source code I should look at?
Beta Was this translation helpful? Give feedback.
All reactions