v-if Error,Chrome,Brave
Version
3.1.2
Reproduction link
Steps to reproduce
//v-if stop,Firefox OK,all working cool
//error:v-if stop,Chrome,Brave
DOMException: Failed to execute 'stop'
<div class="w3-modal-content w3-animate-zoom">
<div class="recorder_wrapper">
<div class="recorder">
<button id="button" @click="setAudio"></button>
<div>
<button class="w3-button w3-green" @click="play" v-if="lmsg.rec_play" >play</button>
<button class="w3-button w3-green" @click="stop" v-if="lmsg.rec_stop" >stop</button></div>
</div>
</div>
</div>