forked from opentiny/tiny-vue
fix(drawer): mask disappear faster than content (#375)
This commit is contained in:
parent
c38d204525
commit
18d4d190d3
|
@ -15,7 +15,7 @@ export const watchVisible = ({ state }) => (bool) => {
|
|||
export const watchToggle = ({ emit }) => (bool) => {
|
||||
setTimeout(() => {
|
||||
emit('update:visible', bool)
|
||||
}, 200)
|
||||
}, 0)
|
||||
}
|
||||
|
||||
export const confirm = ({ emit, state }) => () => {
|
||||
|
|
Loading…
Reference in New Issue