platypush/platypush/backend/http/webapp/src/components/panels/LightHue/Index.vue

14 lines
214 B
Vue

<template>
<Light plugin-name="light.hue" />
</template>
<script>
import Light from "@/components/panels/Light/Index";
export default {
name: "LightHue",
mixins: [Light],
components: {Light},
}
</script>