zl程序教程

您现在的位置是:首页 >  前端

当前栏目

vue confirm添加滚动条

Vue 添加 滚动条 confirm
2023-09-11 14:18:05 时间

原文地址:https://blog.csdn.net/weixin_45410246/article/details/125897930

const h = this.$createElement
const message = h('div', { style: 'position:relative', class: '' }, [h('el-scrollbar', { 'wrap-style': 'overflow-y: scroll; overflow-x: hidden;', class: 'h' },
[h('div', { style: ';padding-bottom:15px' }, `有... ' : ''},是否继续?`)])])
this.$confirm(message, '提示', {
confirmButtonText: '确定',
closeOnClickModal: false,
cancelButtonText: '取消',
type: 'warning'
}).then(async () => {})

// 处理下内部样式
el-scrollbar__wrap{
overflow: hidden scroll!important;
max-height: 200px!important;
}

————————————————
版权声明:本文为CSDN博主「weixin_45410246」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_45410246/article/details/125897930