fix(transition): do not display when show is true (#4005)

fix #3816
This commit is contained in:
rex 2021-01-26 17:15:42 +08:00 committed by GitHub
parent 84eb154377
commit 60acd2d848
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,6 +37,12 @@ export function transition(showDefaultValue: boolean) {
display: false, display: false,
}, },
ready() {
if (this.data.show === true) {
this.observeShow(true, false);
}
},
methods: { methods: {
observeShow(value: boolean, old: boolean) { observeShow(value: boolean, old: boolean) {
if (value === old) { if (value === old) {