Custom postion for v-dialog Vuetify

扶醉桌前 提交于 2019-12-23 18:34:39

问题


I need to open a v-dialog of certain width and height on right bottom side of my page, but, I can't understand how to do. V-dialog always are centered on the page, I searched on official doc, tried use CSS, but wasn't able any ideas?


回答1:


This feature is being looked at but for now you can use edit the CSS class yourself. For instance, to get it to display in the bottom right use:

.v-dialog {
    position: absolute;
    bottom: 0;
    right: 0;
}


来源:https://stackoverflow.com/questions/53415502/custom-postion-for-v-dialog-vuetify

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!