add domotics links

This commit is contained in:
2020-06-18 23:02:15 +02:00
parent d5be73c622
commit 2779789558
2 changed files with 37 additions and 1 deletions

View File

@@ -4,6 +4,7 @@
<div class="flex flex-wrap -m-2 mt-2">
<OpenWeatherCard class="w-full sm:w-1/2 md:w-1/3 lg:w-1/4" />
<MemoHome class="w-full sm:w-1/2 md:w-1/3 lg:w-1/4" />
<DomoticHome class="w-full sm:w-1/2 md:w-1/3 lg:w-1/4" />
</div>
</div>
</template>
@@ -11,11 +12,12 @@
<script>
import OpenWeatherCard from './Meteo/OpenWeatherCard'
import MemoHome from './Memo/MemoHome'
import DomoticHome from './Domotics/DomoticHome'
export default {
name: 'Home',
components: {
OpenWeatherCard, MemoHome
OpenWeatherCard, MemoHome, DomoticHome
}
}
</script>