<transition name="fade">
<el-dialog
:visible.sync="isShown"
:append-to-body=true
width="100%"
>
<div>
111111
</div>
</el-dialog></transition>
想要加上从底部弹出的效果 但是css加上感觉没效果 有人加过吗?是怎么加的呢?
参考答案:
在你需要的地方复写这两个动画就行了。
附上完整的代码:
效果图:
实现思路说明:
参考源码:https://github.com/ElemeFE/el...,由于dialog已经使用了动画效果,你只需要在这个基础上去覆盖源码的动画即可。这是我想出来的办法,若其他人有其他办法欢迎交流。