import { onMounted, ref, computed, watch, nextTick } from "vue"; const html = (v) => { return v[0] }; export default { props: ['player', 'id'], setup(props) { return { } }, template: html`
` }