modified code

This commit is contained in:
Matthis FAUVET 2024-06-21 14:48:38 +02:00
parent 7e2bb9a22e
commit 7460ef7905
2 changed files with 13 additions and 10 deletions

View File

@ -16,16 +16,18 @@
<script type="javascript" src="./onzer.riot"></script> <script type="javascript" src="./onzer.riot"></script>
<script type="text/javascript"> <script type="text/javascript">
async function fetch_data(){ function fetch_data(){
return fetch("https://dwarves.iut-fbleau.fr/~fauvet/api/albums").then(response => { return fetch("https://dwarves.iut-fbleau.fr/~fauvet/api/albums").then(response => {
return response.json(); return response.json();
} ) } )
} }
async function wait_data(){
return await this.fetch_data()
}
riot.compile().then(() => { riot.compile().then(() => {
riot.mount('onzer', { riot.mount('onzer', {items: wait_data()}
items : await fetch_data()
}
); );
}) })
</script> </script>

View File

@ -30,12 +30,13 @@
<script> <script>
export default { export default {
onBeforeMount(props){ onBeforeMount(props){
this.state = { this.state = {
placeholder: "Rechercher dans les albums", placeholder: "Rechercher dans les albums",
search: "albums" items: props.results,
}; search: "albums"
this.paintButton(); };
this.album_style = "isActivate"; this.paintButton();
this.album_style = "isActivate";
}, },
onMounted(){ onMounted(){
this.update(); this.update();