docs: remove dialog example animation (#19275)

This commit is contained in:
btea 2024-12-17 09:29:14 +08:00 committed by GitHub
parent 5a025e55bd
commit bca0399c75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,19 +35,3 @@ import { ref } from 'vue'
const dialogVisible = ref(false)
</script>
<style lang="scss">
.dialog-fade-enter-active {
animation: modal-fade-in 2s;
.el-overlay-dialog {
animation: dialog-fade-in 2s;
}
}
.dialog-fade-leave-active {
animation: modal-fade-out 2s;
.el-overlay-dialog {
animation: dialog-fade-out 2s;
}
}
</style>