I am currently using the QDialog component from Quasar Framework and I want to set the value of the maximized
property based on the current screen size, specifically being maximized for small screens only. Is there a way for me to reference a variable in my component code or expressions to achieve this? For example:
<q-dialog v-model="showdialog" :maximized="myBreakpointVar === 'sm'"> ... </q-dialog>