Как передать звук с ссылки
Подскажите , как сделать так , чтобы при клике на кнопку я слышал звук с онлайн радио ?
const app = new Vue({
el: '#app',
data() {
return {
url: "https://pcradio.ru/radio/top-100-love",
}
},
methods: {
play() {
this.audio.play();
},
},
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
<div id="app">
<audio :src="url" controls></audio>
<button @click="play()">Play</button>
</div>