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