first work on meteo display

This commit is contained in:
2020-04-04 09:19:51 +02:00
parent 5a94759e35
commit 30e181f86d
8 changed files with 2095891 additions and 4 deletions

View File

@@ -1,11 +1,17 @@
<template>
<div class="p-2">
<h1>Home</h1>
<OpenWeatherCard />
</div>
</template>
<script>
import OpenWeatherCard from "./Meteo/OpenWeatherCard";
export default {
name: "Home"
name: "Home",
components: {
OpenWeatherCard
}
}
</script>