Compare commits

..

No commits in common. "ef62875a5750eae327ebb0fd5da1663341bb95c2" and "336a09f2595e2fe713d1784cb6358807d2ee9b09" have entirely different histories.

View File

@ -12,36 +12,21 @@
@typing="getAsyncData" @typing="getAsyncData"
@select="(option) => (selected = option)" @select="(option) => (selected = option)"
> >
<!-- <template slot-scope="props">--> <template slot-scope="props">
<!-- <div class="media">--> <div class="media">
<!-- <div class="media-left"></div>--> <div class="media-left"></div>
<!-- <div class="media-content">--> <div class="media-content">
<!-- {{ props.name }}--> {{ props.option.title }}
<!-- <br />--> <br />
<!-- <small>--> <small>
<!-- Released at {{ props.option.release_date }}, rated--> Released at {{ props.option.release_date }}, rated
<!-- <b>{{ props.option.vote_average }}</b>--> <b>{{ props.option.vote_average }}</b>
<!-- </small>--> </small>
<!-- </div>--> </div>
<!-- </div>--> </div>
<!-- </template>--> </template>
</b-autocomplete> </b-autocomplete>
</b-field> </b-field>
Résultats possibles: {{ data.length }}
<div v-if="data.length">
<ul>
<li v-for="item in data" :key="item.properties.id">
<div class="columns">
<div class="column">
{{ item.properties.name }}
</div>
<div class="column">
{{ item.properties.context }}
</div>
</div>
</li>
</ul>
</div>
</section> </section>
<section class="map"> <section class="map">
<br /> <br />
@ -185,11 +170,11 @@ export default {
} }
this.isFetching = true this.isFetching = true
this.$axios this.$axios
.get(`https://demo.addok.xyz/search?&type=poi&q=${name}`) .get(`https://demo.addok.xyz/search/?q=${name}`)
.then(({ data }) => { .then(({ data }) => {
console.log('data', data) console.log('data', data)
this.data = [] this.data = []
data.features.forEach((item) => this.data.push(item)) data.results.forEach((item) => this.data.push(item))
}) })
.catch((error) => { .catch((error) => {
this.data = [] this.data = []