diff --git a/pages/index.vue b/pages/index.vue index 4ad32d04e..af4e1bd9e 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -24,7 +24,7 @@
  • - +
  • @@ -533,10 +533,10 @@ }, observeRequestButton() { const requestElement = this.$refs.request.$el; - const sendButton = this.$refs.sendButton; + const sendButtonElement = this.$refs.sendButton; const observer = new IntersectionObserver((entries, observer) => { entries.forEach(entry => { - sendButton.className = entry.isIntersecting ? '' : 'show'; + sendButtonElement.classList.toggle('show'); }); }, { threshold: 1 });