为什么不能在表单中使用 qdialog?
Why shouldn't the qdialog be used in forms?
我想将 q-dialog 用于具有大约 20 个输入的表单。但是在文档中它被告知它应该只用于快速的小事情。
From a UI perspective, you can think of Dialogs as a type of floating
modal, which covers only a portion of the screen. This means Dialogs
should only be used for quick user actions, like verifying a password,
getting a short App notification or selecting an option or options
quickly.
我的模态表单应该使用什么来代替对话框?
Quasar 是一个跨平台框架。它的 UI 组件旨在用于桌面设备和 移动设备 设备。如果您在移动设备上的 Dialog 中放置很多子 UI 元素,它将不适合屏幕大小,并且整个对话框的想法都会失败。因此,最好为包含 20 个输入的表单创建一个专用视图。
我想将 q-dialog 用于具有大约 20 个输入的表单。但是在文档中它被告知它应该只用于快速的小事情。
From a UI perspective, you can think of Dialogs as a type of floating modal, which covers only a portion of the screen. This means Dialogs should only be used for quick user actions, like verifying a password, getting a short App notification or selecting an option or options quickly.
我的模态表单应该使用什么来代替对话框?
Quasar 是一个跨平台框架。它的 UI 组件旨在用于桌面设备和 移动设备 设备。如果您在移动设备上的 Dialog 中放置很多子 UI 元素,它将不适合屏幕大小,并且整个对话框的想法都会失败。因此,最好为包含 20 个输入的表单创建一个专用视图。