mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-12 11:15:14 +00:00
11 lines
191 B
HTML
11 lines
191 B
HTML
<h1>{message}</h1>
|
|
|
|
<script>
|
|
export default {
|
|
preload({ query }) {
|
|
return this.fetch(`credentials/test.json`, {
|
|
credentials: query.creds
|
|
}).then(r => r.json());
|
|
}
|
|
};
|
|
</script> |