vue mounted中监听div的变化

<div style="width:200px;height:30px;background: #0e90d2" id="list2">00</div>
<div @click="fun" id="list" style="width:200px;height:350px;background:blueviolet">{{$store.state.msg}}</div>



methods: {

fun(){
this.$store.dispatch('fun',this.checkedNames);

},

 

 

mounted(){
document.getElementById('list').addEventListener("DOMSubtreeModified", function(){
var he=document.getElementById('list').offsetHeight;

document.getElementById('list2').style.height=he+'px';
console.log(he);
}, false)
}

转载于:https://www.cnblogs.com/qianjin888/p/9179052.html

Logo

前往低代码交流专区

更多推荐