mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-14 12:04:39 +00:00
24 lines
401 B
HTML
24 lines
401 B
HTML
<a href="tall-page#foo">scroll to foo</a>
|
|
<div style="height: 9999px"></div>
|
|
|
|
<div id="foo">
|
|
<a href="another-tall-page">link</a>
|
|
<a href="another-tall-page" sapper-noscroll>link</a>
|
|
{#if barLink}
|
|
<a href="another-tall-page#bar">link</a>
|
|
{/if}
|
|
</div>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
barLink: false
|
|
};
|
|
},
|
|
|
|
oncreate() {
|
|
this.set({ barLink: true })
|
|
}
|
|
}
|
|
</script> |