platypush/platypush/backend/http/webapp/src/components/panels/Media/Players/Vlc.vue

20 lines
282 B
Vue
Raw Normal View History

2021-01-05 00:50:24 +01:00
<template>
<div />
</template>
<script>
import Mixin from "@/components/panels/Media/Players/Mixin";
export default {
name: "Vlc",
mixins: [Mixin],
data() {
return {
iconClass: 'fa fa-tv',
name: 'VLC',
pluginName: 'media.vlc',
}
},
}
</script>