Files
sapper/test/app/routes/[x]/[y]/[z].html
2018-07-17 15:42:35 -04:00

20 lines
276 B
HTML

<span>z: {segment} {count}</span>
<a href="foo/bar/qux"></a>
<script>
import counts from '../_counts.js';
export default {
preload() {
return {
count: counts.z += 1
};
},
oncreate() {
this.set({
segment: this.get().params.z
});
}
};
</script>