mirror of https://github.com/sveltejs/svelte
7 lines
119 B
7 lines
119 B
5 years ago
|
<script>
|
||
|
export let url;
|
||
|
export let slug;
|
||
|
</script>
|
||
|
|
||
|
<img alt="potato" src={url}>
|
||
|
<img alt="potato" src="{slug}.jpg">
|