|
|
@@ -42,6 +42,10 @@ function copyLink() {
|
|
|
navigator.clipboard?.writeText(url);
|
|
|
}
|
|
|
|
|
|
+function scrollToTop() {
|
|
|
+ window.scrollTo({ top: 0, behavior: "smooth" });
|
|
|
+}
|
|
|
+
|
|
|
onMounted(() => {
|
|
|
window.addEventListener("scroll", handleScroll, { passive: true });
|
|
|
});
|
|
|
@@ -360,7 +364,7 @@ onBeforeUnmount(() => {
|
|
|
|
|
|
<button
|
|
|
v-show="showScrollTop"
|
|
|
- @click="window.scrollTo({ top: 0, behavior: 'smooth' })"
|
|
|
+ @click="scrollToTop"
|
|
|
class="fixed right-4 bottom-28 z-40 h-11 w-11 rounded-full bg-brand text-slate-900 shadow-lg grid place-items-center active:scale-95 transition"
|
|
|
aria-label="回到顶部"
|
|
|
>
|