1014156094 / vue-audio-player

Compact, simple and practical PC mobile audio player components(小巧简单实用的 PC 移动端的 Vue 音频播放器组件)
MIT License
201 stars 47 forks source link

vue3中用refs控制如何播放 #60

Closed duke-git closed 1 year ago

1014156094 commented 1 year ago

看来你对vue3不熟悉哈哈哈,大概写法是下面这样子

 <template>
  <div>
    <audio-player ref="audioPlayerRef" />
  </div>
 </template>

<script setup>
  const audioPlayerRef = ref()
  audioPlayerRef.pause()
</script>