Is there a way to show a component in the Dialog?
-
How do you go about rendering a component in a dialog? If that’s not possible, how do you form a bit more non standard modals?
-
Dialogs are just Modals wrapped up. Create a minimized Modal with what components you like.
-
Is there a simple example on how you invoke that minimized modal?
-
<q-modal class="minimized">
References:
- http://quasar-framework.org/components/modal.html
- Might as well look at Dialog code (which is a wrapper over Modal): https://github.com/quasarframework/quasar/blob/dev/src/components/dialog/Dialog.vue
-
nice one, thanks.