您的位置:首页技术文章
文章详情页

javascript - vue 通过赋值改变select的value怎么触发change事件

【字号: 日期:2023-04-09 09:08:05浏览:51作者:猪猪

问题描述

从后台获取到select的值并赋值给select,怎么触发change事件html代码简写如下:

<select v-model='resData.type' @change='supRes(resData.type)' > <option value=''>--请选择--</option> <option value='2'>123</option> <option value='3'>456</option></select>

js代码简写如下:

axios({ method:'get', url:'***', params:{ id : row.id } }).then((res)=>{ var data = res.data.content; this.resData = { type : data.type } })supRes:function(val){ console.log(val)}

问题解答

回答1:

是不是可以直接 watch resData.type ? 变相的change

回答2:

手动trigger一下

标签: JavaScript
相关文章: