elementui的$msgbox使用vnode,修改数据后视图不更新问题
const h = this.$createElement
this.$msgbox({
title: '消息',
message: h('el-button', { props: { }, nativeOn: { click: () => { this.other += 1 } }}, this.other),
showCancelButton: true,
confirmButtonText: '确定',
cancelButtonText: '取消'
}).then(action => {
this.$message({
type: 'info',
message: 'action: ' + action
})
})
如图,在this.$msgbox里使用vnode时发现数据能变但是视图不会变,比如这个,other在开发工具已经显示了变化,但是视图一直是初始值,求教原因,以及解决办法,好像有vmodel的都是这样,数据变了页面不变
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
目前发现input select都这样
有解决方法了吗 我也遇到了这个问题