1👍
<template>
<button @click="scrollToElement()">
Scroll to el
</button>
...
<div ref="section">
<p>something</p>
</div>
...
</template>
<script setup>
import { ref } from "vue";
const section = ref();
const scrollToElement = () => {
section.value.scrollIntoView({ behavior: "smooth" });
}
</script>
- [Vuejs]-PHP 7.0 move_uploaded_file() doesn't work
- [Vuejs]-Variable in data section can't get API response value (response.data)
Source:stackexchange.com