mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-12 11:15:14 +00:00
10 lines
115 B
HTML
10 lines
115 B
HTML
<p>URL is {url}</p>
|
|
|
|
<script>
|
|
export default {
|
|
preload({ url }) {
|
|
if (url) return { url };
|
|
}
|
|
};
|
|
</script>
|