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

14 lines
214 B
Vue
Raw Normal View History

2020-11-30 20:57:00 +01:00
<template>
<Light plugin-name="light.hue" />
</template>
<script>
import Light from "@/components/panels/Light/Index";
export default {
name: "LightHue",
mixins: [Light],
components: {Light},
}
</script>