vue-scroll-reveal.js 298 B

123456789101112
  1. import Vue from 'vue'
  2. // In main.js
  3. import VueScrollReveal from 'vue-scroll-reveal';
  4. // Using ScrollReveal's default configuration
  5. Vue.use(VueScrollReveal);
  6. // OR specifying custom default options for all uses of the directive
  7. Vue.use(VueScrollReveal, {
  8. class: 'v-scroll-reveal'
  9. });