mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-13 19:45:26 +00:00
20 lines
308 B
HTML
20 lines
308 B
HTML
<span>x: {segment} {count}</span>
|
|
<svelte:component this={child.component} {...child.props}/>
|
|
|
|
<script>
|
|
import counts from './_counts.js';
|
|
|
|
export default {
|
|
preload() {
|
|
return {
|
|
count: counts.x += 1
|
|
};
|
|
},
|
|
|
|
oncreate() {
|
|
this.set({
|
|
segment: this.get().params.x
|
|
});
|
|
}
|
|
};
|
|
</script> |