mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-12 11:15:14 +00:00
15 lines
270 B
HTML
15 lines
270 B
HTML
{#if preloading}
|
|
<progress class='preloading-progress' value=0.5/>
|
|
{/if}
|
|
|
|
<svelte:component this={child.component} {rootPreloadFunctionRan} {...child.props}/>
|
|
|
|
<script>
|
|
export default {
|
|
preload() {
|
|
return {
|
|
rootPreloadFunctionRan: true
|
|
};
|
|
}
|
|
};
|
|
</script> |