2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Vue Smooth Scrollを使ってみた

Last updated at Posted at 2019-01-12

vue.jsでスムースクロールの実装にトライしてみたので自分用にメモ

インストール

npm install vue-smoothscroll --save

実装

単一ファイルコンポーネント内で実装してみました
(※単一ファイルコンポーネントでも公式での使い方の説明通りで問題なく動作しました)。

app.js

window.Vue = require('vue')

const app = new Vue({
  el: '#app'
})

app.vue

<template>
    <div class="form-group" id="comment">
</template>

<script>
    import vueSmoothScroll from 'vue-smoothscroll'
    Vue.use(vueSmoothScroll)

    export default {
        methods: {
            // 記載はしておりませんが、イベントをトリガーにして以下の処理が行われ、
            // コメント要素までスムーズスクロールされるイメージです
            doSmoothScroll() {
                this.$SmoothScroll(document.querySelector('#comment'), 400, null, null, 'y')
           },
        },
     }
</script>
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?