4种方案教你彻底解决vue el-dialog的model的状态已经改变但是却不显示弹窗,×号点击后异常无法显示弹框
2024-05-12如果你是VUE2.X,请检查你是否在:visible这个属性上加.sync,就像这样:visible.sync=“dialogVisble”,vue3应该是v-model的绑定方式,请去查文档~如果方案1没有解决,可以尝试将x号绑定和取消一样的方法来进行关闭。找到元素,手动在dom里面把mask的display改成show。欢迎大家指出文章需要改正之处~_el-dialog 不显示
vue3 ts项目 警告
2024-05-10error.ts:14 ElementPlusError: [el-dialog] [API] the title slot is about to be deprecated in version 3.0.0, please use the header slot instead.以上是警告,大概意思就说 el-dialog的title插槽将要被启用 请用header替代,那么上代码中找到title插槽用headert替代掉就可以了。_[el-dialog] [api] the title slot is about to be deprecated in version 3.0.0,
vue3 element-plus,在el-dialog中使用v-loading无效的解决方法
2024-04-23在使用el-dialog的时候,想要实现点击弹框,出现加载中的效果_loading不起作用