Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
该goto()功能滚动到页面顶部。即使是同一页。这与使用事物/功能<a>解决的标签的行为相同。sapper-noscroll无论如何对goto()功能做同样的事情?
goto()
<a>
sapper-noscroll
我想出了以下技巧来实现sapper-noscroll功能goto():
const myGoto = function() { g.href = `/your/link/here` g.click() } <a href="/" bind:this={g} hidden class="hidden" sapper-noscroll>a</a>