mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-18 13:35:08 +00:00
12 lines
167 B
HTML
12 lines
167 B
HTML
<p>URL is {{url}}</p>
|
|
|
|
<script>
|
|
export default {
|
|
preload(foo) {
|
|
let url = foo.url;
|
|
console.log('> i am here', url, foo);
|
|
return { url };
|
|
}
|
|
};
|
|
</script>
|