<template>
<div class="home" v-for="station of stations" :key="station.id" >
<h1>{{ station.name }}</h1>
<ul>
<li v-for="car of car_filter" :key="car.id">{{ car.name }}</li>
</ul>
</div>
</template>
<script>
const axios = require('axios');
export default {
name: 'Home',
data() {
return {
stations: [],
cars: []
}
},
mounted() {
Promise.all([
axios.get(`http://localhost:3000/stations`),
axios.get(`http://localhost:3000/cars`)
]).then(([stations, cars]) => {
this.stations = stations.data;
this.cars = cars.data;
});
},
computed: {
car_filter: function () {
return this.cars.filter( function () {
return this.stations.name === this.cars.address; ----- такая конструкция не работает
})
}
}
}
</script>
в db.json создал двумерный массив с данными. Во втором массиве из 2х добавил ключ с значением которое встречается в первом массиве чтобы потом сравнить их и выводить только данные которые совпали.
Подскажите как вывести только тот car.name который прошел проверку stations.name === cars.address?