modified code
This commit is contained in:
parent
7e2bb9a22e
commit
7460ef7905
10
index.html
10
index.html
@ -16,16 +16,18 @@
|
||||
<script type="javascript" src="./onzer.riot"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
async function fetch_data(){
|
||||
function fetch_data(){
|
||||
return fetch("https://dwarves.iut-fbleau.fr/~fauvet/api/albums").then(response => {
|
||||
return response.json();
|
||||
} )
|
||||
}
|
||||
|
||||
riot.compile().then(() => {
|
||||
riot.mount('onzer', {
|
||||
items : await fetch_data()
|
||||
async function wait_data(){
|
||||
return await this.fetch_data()
|
||||
}
|
||||
|
||||
riot.compile().then(() => {
|
||||
riot.mount('onzer', {items: wait_data()}
|
||||
);
|
||||
})
|
||||
</script>
|
||||
|
@ -32,6 +32,7 @@
|
||||
onBeforeMount(props){
|
||||
this.state = {
|
||||
placeholder: "Rechercher dans les albums",
|
||||
items: props.results,
|
||||
search: "albums"
|
||||
};
|
||||
this.paintButton();
|
||||
|
Loading…
Reference in New Issue
Block a user