There is an example in vuetify docs that opens the fullscreen dialog on mobile devices:
<template>
<v-dialog :fullscreen="$vuetify.breakpoint.mobile">
...
</v-dialog>
</template>
In ipyvuetify the fullscreen property of v.Dialog expects a boolean value. Is it possible to either allow it to be a string with a javascript expression, just like in the example, or provide some widget with the same properties as in $vuetify.breakpoint to use with jslink?