platypush/platypush/backend/http/webapp/src/components/panels/Media/Providers/Mixin.vue

21 lines
263 B
Vue

<script>
import Utils from "@/Utils";
export default {
emits: ['back', 'path-change', 'play'],
mixins: [Utils],
props: {
filter: {
type: String,
default: '',
},
},
data() {
return {
loading: false,
}
},
}
</script>