Files
sapper/test/app/src/routes/[x]/[y]/[z].html
2018-09-19 12:02:11 -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>