mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-22 07:05:24 +00:00
20 lines
276 B
HTML
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> |