53 lines
1.4 KiB
Vue
53 lines
1.4 KiB
Vue
<template>
|
|
<h1 id="tableLabel">Weather forecast</h1>
|
|
|
|
<p>This component demonstrates fetching data from the server.</p>
|
|
|
|
<p v-if="!forecasts"><em>Loading...</em></p>
|
|
|
|
<table class='table table-striped' aria-labelledby="tableLabel" v-if="forecasts">
|
|
<thead>
|
|
<tr>
|
|
<th>Date</th>
|
|
<th>Temp. (C)</th>
|
|
<th>Temp. (F)</th>
|
|
<th>Summary</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="forecast of forecasts" v-bind:key="forecast">
|
|
<td>{{ forecast.date }}</td>
|
|
<td>{{ forecast.temperatureC }}</td>
|
|
<td>{{ forecast.temperatureF }}</td>
|
|
<td>{{ forecast.summary }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
import axios from 'axios'
|
|
export default {
|
|
name: "FetchData",
|
|
data() {
|
|
return {
|
|
forecasts: []
|
|
}
|
|
},
|
|
methods: {
|
|
getWeatherForecasts() {
|
|
axios.get('/weatherforecast')
|
|
.then((response) => {
|
|
this.forecasts = response.data;
|
|
})
|
|
.catch(function (error) {
|
|
alert(error);
|
|
});
|
|
}
|
|
},
|
|
mounted() {
|
|
this.getWeatherForecasts();
|
|
}
|
|
}
|
|
</script> |