scroll toができるカスタムディレクティブの邑楽グイン
npm install git+https://github.com/ohagip/vue-scroll-to.git
or
./src/vue-scroll-to.js
をコピペ
import VueScrollTo from 'vue-scroll-to'
Vue.use(VueScrollTo)
<button v-scroll-to="'#target'"></button>
<button v-scroll-to="{ el: '#target', offset: 100 }"></button>
<button v-scroll-to="{ el: '#target', bottom: true }"></button>
Property | Type | Description |
---|---|---|
targets | String | Object | スクロール対象のセレクタ |
targets.el | String | スクロール対象のセレクタ |
targets.offset | Number | スクロール位置のオフセット |
targets.bottom | Boolean | スクロール対象の下部にスクロール |
npm install
npm run serve
npm run build