vue audio组件封装 直接调用方法播放音频源码
封装 index.js
index.js源码
import Vue from 'vue'
import TzAudio from './audio'
let TzInstance
let getInstance = function () {
if (TzInstance) return TzInstance
const vm = new Vue({
data: {},
render (h) {
return h(TzAudio, {})
}
}..
原创
2020-09-18 17:03:31 ·
1495 阅读 ·
0 评论