|
|
@ -15,7 +15,7 @@ We'll add an `onMount` handler that loads some data over the network:
|
|
|
|
let photos = [];
|
|
|
|
let photos = [];
|
|
|
|
|
|
|
|
|
|
|
|
onMount(async () => {
|
|
|
|
onMount(async () => {
|
|
|
|
const res = await fetch(`https://jsonplaceholder.typicode.com/photos?_limit=20`);
|
|
|
|
const res = await fetch(`/tutorial/api/album`);
|
|
|
|
photos = await res.json();
|
|
|
|
photos = await res.json();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|