mirror of
https://github.com/aelve/guide.git
synced 2024-12-23 12:52:31 +03:00
Fixed dialogs jerky motion on first open after reload
This commit is contained in:
parent
32d4b25041
commit
306c2bab7a
@ -1,6 +1,7 @@
|
||||
<template>
|
||||
<div>
|
||||
<v-dialog
|
||||
lazy
|
||||
:value="value"
|
||||
@input="close"
|
||||
max-width="500px"
|
||||
|
@ -1,5 +1,6 @@
|
||||
<template>
|
||||
<v-dialog
|
||||
lazy
|
||||
:value="value"
|
||||
@input="close"
|
||||
@keyup.esc.native="close"
|
||||
|
@ -1,5 +1,6 @@
|
||||
<template>
|
||||
<v-dialog
|
||||
lazy
|
||||
:value="value"
|
||||
@input="close"
|
||||
max-width="500px"
|
||||
|
@ -1,6 +1,7 @@
|
||||
<!-- Universal confirmation dialog, just pass text and function in Props -->
|
||||
<template>
|
||||
<v-dialog
|
||||
lazy
|
||||
:value="value"
|
||||
:attach="attach"
|
||||
max-width="500px"
|
||||
|
@ -1,5 +1,6 @@
|
||||
<template>
|
||||
<v-dialog
|
||||
lazy
|
||||
:value="value"
|
||||
persistent
|
||||
max-width="99vw"
|
||||
|
Loading…
Reference in New Issue
Block a user